HOW TO:封送處理 ADO.NET 的 BSTR 字串
更新:2007 年 11 月
示範如何將 COM 字串 (BSTR) 加入至資料庫,以及如何從資料庫將 System.String 封送至 BSTR。
範例
在此範例中,會建立類別 DatabaseClass,使其與 ADO.NET DataTable 物件互動。請注意,這個類別是原生 C++ class (相較於 ref class 或 value class 而言)。因為要從機器碼使用此類別,而且無法在機器碼中使用 Managed 型別,所以這點是必要的。如類別宣告之前的 #pragma managed 指示詞所表示,這個類別將會編譯成以 CLR 為目標。如需這個指示詞的詳細資訊,請參閱 managed, unmanaged。
請注意 DatabaseClass 類別的私用成員:gcroot<DataTable ^> table。由於原生型別不能包含 Managed 型別,所以 gcroot 關鍵字是必要的。如需 gcroot 的詳細資訊,請參閱 HOW TO:以原生型別宣告控制代碼。
如同 main 之前的 #pragma unmanaged 指示詞所表示的,此範例中的其餘程式碼都是原生 C++ 程式碼。在此範例中,會建立 DatabaseClass 的新執行個體並呼叫它的方法,以建立資料表,並在此資料表中填入一些資料列。請注意,COM 會傳遞至資料庫資料行 StringCol 做為其值。在 DatabaseClass 之內,會使用 System.Runtime.InteropServices 命名空間中可以找到的封送處理功能,將這些字串封送處理到 Managed 字串。具體而言,PtrToStringBSTR 方法是用於將 BSTR 封送處理為 String,而 StringToBSTR 方法則用於將 String 封送處理為 BSTR。
注意事項: |
---|
由 StringToBSTR 所配置的記憶體必須透過呼叫 FreeBSTR 或 SysFreeString 才能取消配置。 |
// 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 有關的安全性問題之詳細資訊,請參閱保護 ADO.NET 應用程式的安全。
請參閱
參考
System.Runtime.InteropServices