SqlCeResultSet.SetBytes 方法
從該欄位內的指定位置開始,將某一段位元組從指定的緩衝區複製到指定的資料行。
命名空間: System.Data.SqlServerCe
組件: System.Data.SqlServerCe (在 System.Data.SqlServerCe.dll 中)
語法
'宣告
Public Sub SetBytes ( _
ordinal As Integer, _
dataIndex As Long, _
buffer As Byte(), _
bufferIndex As Integer, _
length As Integer _
)
'用途
Dim instance As SqlCeResultSet
Dim ordinal As Integer
Dim dataIndex As Long
Dim buffer As Byte()
Dim bufferIndex As Integer
Dim length As Integer
instance.SetBytes(ordinal, dataIndex, _
buffer, bufferIndex, length)
public void SetBytes(
int ordinal,
long dataIndex,
byte[] buffer,
int bufferIndex,
int length
)
public:
void SetBytes(
int ordinal,
long long dataIndex,
array<unsigned char>^ buffer,
int bufferIndex,
int length
)
member SetBytes :
ordinal:int *
dataIndex:int64 *
buffer:byte[] *
bufferIndex:int *
length:int -> unit
public function SetBytes(
ordinal : int,
dataIndex : long,
buffer : byte[],
bufferIndex : int,
length : int
)
參數
- ordinal
型別:System.Int32
要設定之資料行的序數位置。
- dataIndex
型別:System.Int64
資料行內開始複製資料的位置。
- buffer
型別:array<System.Byte[]
包含要複製之資料的緩衝區。
- bufferIndex
型別:System.Int32
緩衝區中複製資料的位移。
- length
型別:System.Int32
要複製的最大位元組數目。
備註
基礎資料行的類型必須是 binary、varbinary 或 image。
如果資料列未標示為可更新,就會擲回例外狀況。
如果指定的位置沒有任何欄位,就會擲回例外狀況。