次の方法で共有


方法 : ADO.NET の Unicode 文字列をマーシャリングする

更新 : 2007 年 11 月

データベースにネイティブな Unicode 文字列 (wchar_t *) を追加する方法、およびデータベースの System.String をネイティブな Unicode 文字列にマーシャリングする方法について説明します。

使用例

この例では、ADO.NET DataTable オブジェクトとやり取りするための DatabaseClass というクラスが作成されます。このクラスはネイティブな C++ class です (ref class や value class ではありません)。これは、ネイティブ コードからこのクラスを使用するために必要なもので、マネージ型をネイティブ コードで使用することはできません。このクラスは、クラスの宣言の前に #pragma managed ディレクティブが付いていることからわかるように、CLR を対象としてコンパイルされます。このディレクティブの詳細については、「managed, unmanaged」を参照してください。

DatabaseClass クラスのプライベート メンバは gcroot<DataTable ^> table です。ネイティブ型にはマネージ型は含まれないため、gcroot キーワードが必要です。gcroot の詳細については、「方法 : ネイティブ型のハンドルを宣言する」を参照してください。

この例のコードの他の部分は、#pragma unmanaged ディレクティブが main の前に置かれていることからわかるように、ネイティブな C++ コードです。この例では、DatabaseClass の新しいインスタンスを作成し、そのメソッドを呼び出し、テーブルを作成して、テーブルのいくつかの行を設定します。Unicode C++ 文字列は、データベース列 StringCol の値として渡されます。DatabaseClass 内では、System.Runtime.InteropServices 名前空間にあるマーシャリング機能を使用して、これらの文字列がマネージ文字列にマーシャリングされます。具体的には、PtrToStringUni メソッドは wchar_t * を String にマーシャリングするときに、また StringToHGlobalUni メソッドは String を wchar_t * にマーシャリングするときに使用されます。

メモ :

StringToHGlobalUni によって割り当てられたメモリは、FreeHGlobal または GlobalFree を呼び出して解放する必要があります。

// 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 に関するセキュリティの詳細については、「ADO.NET アプリケーションのセキュリティ保護」を参照してください。

参照

参照

System.Runtime.InteropServices

その他の技術情報

C++ での ADO.NET によるデータ アクセス

ADO.NET

相互運用性

ネイティブと .NET の相互運用性