使用 ADO.NET 的数据访问 (C++/CLI)

ADO.NET 是用于数据访问的 .NET Framework API,提供了强大的功能并易于使用,是以前的数据访问解决方案无法比拟的。 本部分介绍一些涉及 ADO.NET 的问题,这些问题专门针对 Visual C++ 用户,例如封送本机类型。

ADO.NET 在公共语言运行时 (CLR) 下运行。 因此,与 ADO.NET 交互的任何应用程序也必须面向 CLR。 但这并不意味着本机应用程序不能使用 ADO.NET。 这些示例将演示如何从本机代码与 ADO.NET 数据库进行交互。

为 ADO.NET 封送 ANSI 字符串

演示如何将本机字符串 (char *) 添加到数据库,以及如何将 System.String 从数据库封送到本机字符串。

示例

在此示例中,将创建 DatabaseClass 类来与 ADO.NET DataTable 对象交互。 请注意,此类为本机 C++ class(与 ref classvalue class 相比)。 这是必需的,因为我们需要从本机代码使用此类,并且不能在本机代码中使用托管类型。 此类将编译为面向 CLR,如类声明前面的 #pragma managed 指令所示。 有关此指令的详细信息,请参阅 managed、unmanaged

请注意 DatabaseClass 类的私有成员:gcroot<DataTable ^> table。 由于本机类型不能包含托管类型,因此 gcroot 关键字是必需的。 有关 gcroot 的详细信息,请参阅如何:使用本机类型声明句柄

此示例中其余代码为本机 C++ 代码,如 main 前面的 #pragma unmanaged 指令所示。 在此示例中,我们将创建 DatabaseClass 的新实例、调用其方法来创建表并填充表中的某些行。 请注意,本机 C++ 字符串将作为数据库列 StringCol 的值传递。 在 DatabaseClass 中,通过使用 System.Runtime.InteropServices 命名空间中的封送功能将这些字符串封送到托管字符串。 具体而言,PtrToStringAnsi 方法用于将 char * 封送到 StringStringToHGlobalAnsi 方法用于将 String 封送到 char *

注意

StringToHGlobalAnsi 分配的内存必须通过调用 FreeHGlobalGlobalFree 来解除分配。

// adonet_marshal_string_native.cpp
// compile with: /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll
#include <comdef.h>
#include <gcroot.h>
#include <iostream>
using namespace std;

#using <System.Data.dll>
using namespace System;
using namespace System::Data;
using namespace System::Runtime::InteropServices;

#define MAXCOLS 100

#pragma managed
class DatabaseClass
{
public:
    DatabaseClass() : table(nullptr) { }

    void AddRow(char *stringColValue)
    {
        // Add a row to the table.
        DataRow ^row = table->NewRow();
        row["StringCol"] = Marshal::PtrToStringAnsi(
            (IntPtr)stringColValue);
        table->Rows->Add(row);
    }

    void CreateAndPopulateTable()
    {
        // Create a simple DataTable.
        table = gcnew DataTable("SampleTable");

        // Add a column of type String to the table.
        DataColumn ^column1 = gcnew DataColumn("StringCol",
            Type::GetType("System.String"));
        table->Columns->Add(column1);
    }

    int GetValuesForColumn(char *dataColumn, char **values,
        int valuesLength)
    {
        // Marshal the name of the column to a managed
        // String.
        String ^columnStr = Marshal::PtrToStringAnsi(
                (IntPtr)dataColumn);

        // Get all rows in the table.
        array<DataRow ^> ^rows = table->Select();
        int len = rows->Length;
        len = (len > valuesLength) ? valuesLength : len;
        for (int i = 0; i < len; i++)
        {
            // Marshal each column value from a managed string
            // to a char *.
            values[i] = (char *)Marshal::StringToHGlobalAnsi(
                (String ^)rows[i][columnStr]).ToPointer();
        }

        return len;
    }

private:
    // Using gcroot, you can use a managed type in
    // a native class.
    gcroot<DataTable ^> table;
};

#pragma unmanaged
int main()
{
    // Create a table and add a few rows to it.
    DatabaseClass *db = new DatabaseClass();
    db->CreateAndPopulateTable();
    db->AddRow("This is string 1.");
    db->AddRow("This is string 2.");

    // Now retrieve the rows and display their contents.
    char *values[MAXCOLS];
    int len = db->GetValuesForColumn(
        "StringCol", values, MAXCOLS);
    for (int i = 0; i < len; i++)
    {
        cout << "StringCol: " << values[i] << endl;

        // Deallocate the memory allocated using
        // Marshal::StringToHGlobalAnsi.
        GlobalFree(values[i]);
    }

    delete db;

    return 0;
}
StringCol: This is string 1.
StringCol: This is string 2.

编译代码

  • 若要从命令行编译代码,请将代码示例保存在名为 adonet_marshal_string_native.cpp 的文件中,并输入以下语句:

    cl /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll adonet_marshal_string_native.cpp
    

为 ADO.NET 封送 BSTR 字符串

演示如何将 COM 字符串 (BSTR) 添加到数据库,以及如何将 System.String 从数据库封送到 BSTR

示例

在此示例中,将创建 DatabaseClass 类来与 ADO.NET DataTable 对象交互。 请注意,此类为本机 C++ class(与 ref classvalue class 相比)。 这是必需的,因为我们需要从本机代码使用此类,并且不能在本机代码中使用托管类型。 此类将编译为面向 CLR,如类声明前面的 #pragma managed 指令所示。 有关此指令的详细信息,请参阅 managed、unmanaged

请注意 DatabaseClass 类的私有成员:gcroot<DataTable ^> table。 由于本机类型不能包含托管类型,因此 gcroot 关键字是必需的。 有关 gcroot 的详细信息,请参阅如何:使用本机类型声明句柄

此示例中其余代码为本机 C++ 代码,如 main 前面的 #pragma unmanaged 指令所示。 在此示例中,我们将创建 DatabaseClass 的新实例、调用其方法来创建表并填充表中的某些行。 请注意,COM 字符串将作为数据库列 StringCol 的值传递。 在 DatabaseClass 中,通过使用 System.Runtime.InteropServices 命名空间中的封送功能将这些字符串封送到托管字符串。 具体而言,PtrToStringBSTR 方法用于将 BSTR 封送到 StringStringToBSTR 方法用于将 String 封送到 BSTR

注意

StringToBSTR 分配的内存必须通过调用 FreeBSTRSysFreeString 来解除分配。

// adonet_marshal_string_bstr.cpp
// compile with: /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll
#include <comdef.h>
#include <gcroot.h>
#include <iostream>
using namespace std;

#using <System.Data.dll>
using namespace System;
using namespace System::Data;
using namespace System::Runtime::InteropServices;

#define MAXCOLS 100

#pragma managed
class DatabaseClass
{
public:
    DatabaseClass() : table(nullptr) { }

    void AddRow(BSTR stringColValue)
    {
        // Add a row to the table.
        DataRow ^row = table->NewRow();
        row["StringCol"] = Marshal::PtrToStringBSTR(
            (IntPtr)stringColValue);
        table->Rows->Add(row);
    }

    void CreateAndPopulateTable()
    {
        // Create a simple DataTable.
        table = gcnew DataTable("SampleTable");

        // Add a column of type String to the table.
        DataColumn ^column1 = gcnew DataColumn("StringCol",
            Type::GetType("System.String"));
        table->Columns->Add(column1);
    }

    int GetValuesForColumn(BSTR dataColumn, BSTR *values,
        int valuesLength)
    {
        // Marshal the name of the column to a managed
        // String.
        String ^columnStr = Marshal::PtrToStringBSTR(
                (IntPtr)dataColumn);

        // Get all rows in the table.
        array<DataRow ^> ^rows = table->Select();
        int len = rows->Length;
        len = (len > valuesLength) ? valuesLength : len;
        for (int i = 0; i < len; i++)
        {
            // Marshal each column value from a managed string
            // to a BSTR.
            values[i] = (BSTR)Marshal::StringToBSTR(
                (String ^)rows[i][columnStr]).ToPointer();
        }

        return len;
    }

private:
    // Using gcroot, you can use a managed type in
    // a native class.
    gcroot<DataTable ^> table;
};

#pragma unmanaged
int main()
{
    // Create a table and add a few rows to it.
    DatabaseClass *db = new DatabaseClass();
    db->CreateAndPopulateTable();

    BSTR str1 = SysAllocString(L"This is string 1.");
    db->AddRow(str1);

    BSTR str2 = SysAllocString(L"This is string 2.");
    db->AddRow(str2);

    // Now retrieve the rows and display their contents.
    BSTR values[MAXCOLS];
    BSTR str3 = SysAllocString(L"StringCol");
    int len = db->GetValuesForColumn(
        str3, values, MAXCOLS);
    for (int i = 0; i < len; i++)
    {
        wcout << "StringCol: " << values[i] << endl;

        // Deallocate the memory allocated using
        // Marshal::StringToBSTR.
        SysFreeString(values[i]);
    }

    SysFreeString(str1);
    SysFreeString(str2);
    SysFreeString(str3);
    delete db;

    return 0;
}
StringCol: This is string 1.
StringCol: This is string 2.

编译代码

  • 若要从命令行编译代码,请将代码示例保存在名为 adonet_marshal_string_native.cpp 的文件中,并输入以下语句:

    cl /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll adonet_marshal_string_native.cpp
    

为 ADO.NET 封送 Unicode 字符串

演示如何将本机 Unicode 字符串 (wchar_t *) 添加到数据库,以及如何将 System.String 从数据库封送到本机 Unicode 字符串。

示例

在此示例中,将创建 DatabaseClass 类来与 ADO.NET DataTable 对象交互。 请注意,此类为本机 C++ class(与 ref classvalue class 相比)。 这是必需的,因为我们需要从本机代码使用此类,并且不能在本机代码中使用托管类型。 此类将编译为面向 CLR,如类声明前面的 #pragma managed 指令所示。 有关此指令的详细信息,请参阅 managed、unmanaged

请注意 DatabaseClass 类的私有成员:gcroot<DataTable ^> table。 由于本机类型不能包含托管类型,因此 gcroot 关键字是必需的。 有关 gcroot 的详细信息,请参阅如何:使用本机类型声明句柄

此示例中其余代码为本机 C++ 代码,如 main 前面的 #pragma unmanaged 指令所示。 在此示例中,我们将创建 DatabaseClass 的新实例、调用其方法来创建表并填充表中的某些行。 请注意,Unicode C++ 字符串将作为数据库列 StringCol 的值传递。 在 DatabaseClass 中,通过使用 System.Runtime.InteropServices 命名空间中的封送功能将这些字符串封送到托管字符串。 具体而言,PtrToStringUni 方法用于将 wchar_t * 封送到 StringStringToHGlobalUni 方法用于将 String 封送到 wchar_t *

注意

StringToHGlobalUni 分配的内存必须通过调用 FreeHGlobalGlobalFree 来解除分配。

// adonet_marshal_string_wide.cpp
// compile with: /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll
#include <comdef.h>
#include <gcroot.h>
#include <iostream>
using namespace std;

#using <System.Data.dll>
using namespace System;
using namespace System::Data;
using namespace System::Runtime::InteropServices;

#define MAXCOLS 100

#pragma managed
class DatabaseClass
{
public:
    DatabaseClass() : table(nullptr) { }

    void AddRow(wchar_t *stringColValue)
    {
        // Add a row to the table.
        DataRow ^row = table->NewRow();
        row["StringCol"] = Marshal::PtrToStringUni(
            (IntPtr)stringColValue);
        table->Rows->Add(row);
    }

    void CreateAndPopulateTable()
    {
        // Create a simple DataTable.
        table = gcnew DataTable("SampleTable");

        // Add a column of type String to the table.
        DataColumn ^column1 = gcnew DataColumn("StringCol",
            Type::GetType("System.String"));
        table->Columns->Add(column1);
    }

    int GetValuesForColumn(wchar_t *dataColumn, wchar_t **values,
        int valuesLength)
    {
        // Marshal the name of the column to a managed
        // String.
        String ^columnStr = Marshal::PtrToStringUni(
                (IntPtr)dataColumn);

        // Get all rows in the table.
        array<DataRow ^> ^rows = table->Select();
        int len = rows->Length;
        len = (len > valuesLength) ? valuesLength : len;
        for (int i = 0; i < len; i++)
        {
            // Marshal each column value from a managed string
            // to a wchar_t *.
            values[i] = (wchar_t *)Marshal::StringToHGlobalUni(
                (String ^)rows[i][columnStr]).ToPointer();
        }

        return len;
    }

private:
    // Using gcroot, you can use a managed type in
    // a native class.
    gcroot<DataTable ^> table;
};

#pragma unmanaged
int main()
{
    // Create a table and add a few rows to it.
    DatabaseClass *db = new DatabaseClass();
    db->CreateAndPopulateTable();
    db->AddRow(L"This is string 1.");
    db->AddRow(L"This is string 2.");

    // Now retrieve the rows and display their contents.
    wchar_t *values[MAXCOLS];
    int len = db->GetValuesForColumn(
        L"StringCol", values, MAXCOLS);
    for (int i = 0; i < len; i++)
    {
        wcout << "StringCol: " << values[i] << endl;

        // Deallocate the memory allocated using
        // Marshal::StringToHGlobalUni.
        GlobalFree(values[i]);
    }

    delete db;

    return 0;
}
StringCol: This is string 1.
StringCol: This is string 2.

编译代码

  • 若要从命令行编译代码,请将代码示例保存在名为 adonet_marshal_string_wide.cpp 的文件中,并输入以下语句:

    cl /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll adonet_marshal_string_wide.cpp
    

为 ADO.NET 封送 VARIANT

演示如何将本机 VARIANT 添加到数据库,以及如何将 System.Object 从数据库封送到本机 VARIANT

示例

在此示例中,将创建 DatabaseClass 类来与 ADO.NET DataTable 对象交互。 请注意,此类为本机 C++ class(与 ref classvalue class 相比)。 这是必需的,因为我们需要从本机代码使用此类,并且不能在本机代码中使用托管类型。 此类将编译为面向 CLR,如类声明前面的 #pragma managed 指令所示。 有关此指令的详细信息,请参阅 managed、unmanaged

请注意 DatabaseClass 类的私有成员:gcroot<DataTable ^> table。 由于本机类型不能包含托管类型,因此 gcroot 关键字是必需的。 有关 gcroot 的详细信息,请参阅如何:使用本机类型声明句柄

此示例中其余代码为本机 C++ 代码,如 main 前面的 #pragma unmanaged 指令所示。 在此示例中,我们将创建 DatabaseClass 的新实例、调用其方法来创建表并填充表中的某些行。 请注意,本机 VARIANT 类型将作为数据库列 StringCol 的值传递。 在 DatabaseClass 中,通过使用 System.Runtime.InteropServices 命名空间中的封送功能将这些 VARIANT 类型封送到托管对象。 具体而言,GetObjectForNativeVariant 方法用于将 VARIANT 封送到 ObjectGetNativeVariantForObject 方法用于将 Object 封送到 VARIANT

// adonet_marshal_variant.cpp
// compile with: /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll
#include <comdef.h>
#include <gcroot.h>
#include <iostream>
using namespace std;

#using <System.Data.dll>
using namespace System;
using namespace System::Data;
using namespace System::Runtime::InteropServices;

#define MAXCOLS 100

#pragma managed
class DatabaseClass
{
public:
    DatabaseClass() : table(nullptr) { }

    void AddRow(VARIANT *objectColValue)
    {
        // Add a row to the table.
        DataRow ^row = table->NewRow();
        row["ObjectCol"] = Marshal::GetObjectForNativeVariant(
            IntPtr(objectColValue));
        table->Rows->Add(row);
    }

    void CreateAndPopulateTable()
    {
        // Create a simple DataTable.
        table = gcnew DataTable("SampleTable");

        // Add a column of type String to the table.
        DataColumn ^column1 = gcnew DataColumn("ObjectCol",
            Type::GetType("System.Object"));
        table->Columns->Add(column1);
    }

    int GetValuesForColumn(wchar_t *dataColumn, VARIANT *values,
        int valuesLength)
    {
        // Marshal the name of the column to a managed
        // String.
        String ^columnStr = Marshal::PtrToStringUni(
                (IntPtr)dataColumn);

        // Get all rows in the table.
        array<DataRow ^> ^rows = table->Select();
        int len = rows->Length;
        len = (len > valuesLength) ? valuesLength : len;
        for (int i = 0; i < len; i++)
        {
            // Marshal each column value from a managed object
            // to a VARIANT.
            Marshal::GetNativeVariantForObject(
                rows[i][columnStr], IntPtr(&values[i]));
        }

        return len;
    }

private:
    // Using gcroot, you can use a managed type in
    // a native class.
    gcroot<DataTable ^> table;
};

#pragma unmanaged
int main()
{
    // Create a table and add a few rows to it.
    DatabaseClass *db = new DatabaseClass();
    db->CreateAndPopulateTable();

    BSTR bstr1 = SysAllocString(L"This is a BSTR in a VARIANT.");
    VARIANT v1;
    v1.vt = VT_BSTR;
    v1.bstrVal = bstr1;
    db->AddRow(&v1);

    int i = 42;
    VARIANT v2;
    v2.vt = VT_I4;
    v2.lVal = i;
    db->AddRow(&v2);

    // Now retrieve the rows and display their contents.
    VARIANT values[MAXCOLS];
    int len = db->GetValuesForColumn(
        L"ObjectCol", values, MAXCOLS);
    for (int i = 0; i < len; i++)
    {
        switch (values[i].vt)
        {
            case VT_BSTR:
                wcout << L"ObjectCol: " << values[i].bstrVal << endl;
                break;
            case VT_I4:
                cout << "ObjectCol: " << values[i].lVal << endl;
                break;
            default:
                break;
        }

    }

    SysFreeString(bstr1);
    delete db;

    return 0;
}
ObjectCol: This is a BSTR in a VARIANT.
ObjectCol: 42

编译代码

  • 若要从命令行编译代码,请将代码示例保存在名为 adonet_marshal_variant.cpp 的文件中,并输入以下语句:

    cl /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll adonet_marshal_variant.cpp
    

为 ADO.NET 封送 SAFEARRAY

演示如何将本机 SAFEARRAY 添加到数据库,以及如何将托管数组从数据库封送到本机 SAFEARRAY

示例

在此示例中,将创建 DatabaseClass 类来与 ADO.NET DataTable 对象交互。 请注意,此类为本机 C++ class(与 ref classvalue class 相比)。 这是必需的,因为我们需要从本机代码使用此类,并且不能在本机代码中使用托管类型。 此类将编译为面向 CLR,如类声明前面的 #pragma managed 指令所示。 有关此指令的详细信息,请参阅 managed、unmanaged

请注意 DatabaseClass 类的私有成员:gcroot<DataTable ^> table。 由于本机类型不能包含托管类型,因此 gcroot 关键字是必需的。 有关 gcroot 的详细信息,请参阅如何:使用本机类型声明句柄

此示例中其余代码为本机 C++ 代码,如 main 前面的 #pragma unmanaged 指令所示。 在此示例中,我们将创建 DatabaseClass 的新实例、调用其方法来创建表并填充表中的某些行。 请注意,本机 SAFEARRAY 类型将作为数据库列 ArrayIntsCol 的值传递。 在 DatabaseClass 中,通过使用 System.Runtime.InteropServices 命名空间中的封送功能将这些 SAFEARRAY 类型封送到托管对象。 具体而言,Copy 方法用于将 SAFEARRAY 封送到托管整数数组;Copy 方法用于将托管整数数组封送到 SAFEARRAY

// adonet_marshal_safearray.cpp
// compile with: /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll
#include <comdef.h>
#include <gcroot.h>
#include <iostream>
using namespace std;

#using <System.Data.dll>
using namespace System;
using namespace System::Data;
using namespace System::Runtime::InteropServices;

#define MAXCOLS 100

#pragma managed
class DatabaseClass
{
public:
    DatabaseClass() : table(nullptr) { }

    void AddRow(SAFEARRAY *arrayIntsColValue)
    {
        // Add a row to the table.
        DataRow ^row = table->NewRow();
        int len = arrayIntsColValue->rgsabound[0].cElements;
        array<int> ^arr = gcnew array<int>(len);

        int *pData;
        SafeArrayAccessData(arrayIntsColValue, (void **)&pData);
        Marshal::Copy(IntPtr(pData), arr, 0, len);
        SafeArrayUnaccessData(arrayIntsColValue);

        row["ArrayIntsCol"] = arr;
        table->Rows->Add(row);
    }

    void CreateAndPopulateTable()
    {
        // Create a simple DataTable.
        table = gcnew DataTable("SampleTable");

        // Add a column of type String to the table.
        DataColumn ^column1 = gcnew DataColumn("ArrayIntsCol",
            Type::GetType("System.Int32[]"));
        table->Columns->Add(column1);
    }

    int GetValuesForColumn(wchar_t *dataColumn, SAFEARRAY **values,
        int valuesLength)
    {
        // Marshal the name of the column to a managed
        // String.
        String ^columnStr = Marshal::PtrToStringUni(
                (IntPtr)dataColumn);

        // Get all rows in the table.
        array<DataRow ^> ^rows = table->Select();
        int len = rows->Length;
        len = (len > valuesLength) ? valuesLength : len;
        for (int i = 0; i < len; i++)
        {
            // Marshal each column value from a managed array
            // of Int32s to a SAFEARRAY of type VT_I4.
            values[i] = SafeArrayCreateVector(VT_I4, 0, 10);
            int *pData;
            SafeArrayAccessData(values[i], (void **)&pData);
            Marshal::Copy((array<int> ^)rows[i][columnStr], 0,
                IntPtr(pData), 10);
            SafeArrayUnaccessData(values[i]);
        }

        return len;
    }

private:
    // Using gcroot, you can use a managed type in
    // a native class.
    gcroot<DataTable ^> table;
};

#pragma unmanaged
int main()
{
    // Create a table and add a few rows to it.
    DatabaseClass *db = new DatabaseClass();
    db->CreateAndPopulateTable();

    // Create a standard array.
    int originalArray[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };

    // Create a SAFEARRAY.
    SAFEARRAY *psa;
    psa = SafeArrayCreateVector(VT_I4, 0, 10);

    // Copy the data from the original array to the SAFEARRAY.
    int *pData;
    HRESULT hr = SafeArrayAccessData(psa, (void **)&pData);
    memcpy(pData, &originalArray, 40);
    SafeArrayUnaccessData(psa);
    db->AddRow(psa);

    // Now retrieve the rows and display their contents.
    SAFEARRAY *values[MAXCOLS];
    int len = db->GetValuesForColumn(
        L"ArrayIntsCol", values, MAXCOLS);
    for (int i = 0; i < len; i++)
    {
        int *pData;
        SafeArrayAccessData(values[i], (void **)&pData);
        for (int j = 0; j < 10; j++)
        {
            cout << pData[j] << " ";
        }
        cout << endl;
        SafeArrayUnaccessData(values[i]);

        // Deallocate the memory allocated using
        // SafeArrayCreateVector.
        SafeArrayDestroy(values[i]);
    }

    SafeArrayDestroy(psa);
    delete db;

    return 0;
}
0 1 2 3 4 5 6 7 8 9

编译代码

  • 若要从命令行编译代码,请将代码示例保存在名为 adonet_marshal_safearray.cpp 的文件中,并输入以下语句:

    cl /clr /FU System.dll /FU System.Data.dll /FU System.Xml.dll adonet_marshal_safearray.cpp
    

.NET Framework 安全性

有关涉及 ADO.NET 的安全问题的信息,请参阅保护 ADO.NET 应用程序

部分 说明
ADO.NET 提供了 ADO.NET 的概述,它是一组向 .NET 程序员公开数据访问服务的类。

另请参阅

使用 C++/CLI (Visual C++) 进行 .NET 编程

本机和 .NET 的互操作性

System.Runtime.InteropServices

互操作性