DataReaderExtensions.GetChars 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從起始於所指定索引的指定資料行讀取指定的字元數,並將其寫入至起始於指定位置的緩衝區。
public:
[System::Runtime::CompilerServices::Extension]
static long GetChars(System::Data::Common::DbDataReader ^ reader, System::String ^ name, long dataOffset, cli::array <char> ^ buffer, int bufferOffset, int length);
public static long GetChars (this System.Data.Common.DbDataReader reader, string name, long dataOffset, char[] buffer, int bufferOffset, int length);
static member GetChars : System.Data.Common.DbDataReader * string * int64 * char[] * int * int -> int64
<Extension()>
Public Function GetChars (reader As DbDataReader, name As String, dataOffset As Long, buffer As Char(), bufferOffset As Integer, length As Integer) As Long
參數
- reader
- DbDataReader
要從中取得資料行值的資料讀取器。
- name
- String
資料行名稱。
- dataOffset
- Int64
要開始讀取作業之資料列中的來源索引。
- buffer
- Char[]
要將資料複製到其中的目的緩衝區。
- bufferOffset
- Int32
要對其複製資料的緩衝區索引。
- length
- Int32
要讀取的字元數上限。
傳回
讀取的實際字元數目。
例外狀況
指定的名稱不是有效的資料行名稱。
適用於
另請參閱
- ADO.NET 概觀 \(部分機器翻譯\)