Partilhar via


Método SetChars

Copia um comprimento de caracteres do buffer especificado para a coluna especificada, iniciando no local especificado desse campo.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (em System.Data.SqlServerCe.dll)

Sintaxe

'Declaração
Public Sub SetChars ( _
    ordinal As Integer, _
    dataIndex As Long, _
    buffer As Char(), _
    bufferIndex As Integer, _
    length As Integer _
)
'Uso
Dim instance As SqlCeResultSet
Dim ordinal As Integer
Dim dataIndex As Long
Dim buffer As Char()
Dim bufferIndex As Integer
Dim length As Integer

instance.SetChars(ordinal, dataIndex, _
    buffer, bufferIndex, length)
public void SetChars(
    int ordinal,
    long dataIndex,
    char[] buffer,
    int bufferIndex,
    int length
)
public:
void SetChars(
    int ordinal, 
    long long dataIndex, 
    array<wchar_t>^ buffer, 
    int bufferIndex, 
    int length
)
member SetChars : 
        ordinal:int * 
        dataIndex:int64 * 
        buffer:char[] * 
        bufferIndex:int * 
        length:int -> unit 
public function SetChars(
    ordinal : int, 
    dataIndex : long, 
    buffer : char[], 
    bufferIndex : int, 
    length : int
)

Parâmetros

  • dataIndex
    Tipo: System. . :: . .Int64
    O local na coluna para o qual se deve iniciar a cópia dos dados.
  • buffer
    Tipo: array<System. . :: . .Char> [] () [] []
    O buffer que contém os dados a serem copiados.
  • bufferIndex
    Tipo: System. . :: . .Int32
    No buffer, o deslocamento a partir do qual os dados devem ser copiados.

Comentários

A coluna subjacente deve ser do tipo char, nchar, varchar, nvarchar, text ou ntext.

Se a linha não for marcada como atualizável, será lançada uma exceção.

Se não existir nenhum campo na posição especificada, será lançada uma exceção.

Consulte também

Referência

SqlCeResultSet Classe

Membros SqlCeResultSet

Namespace System.Data.SqlServerCe