VistaDB 6
VistaDB.Compatibility.SqlServer Namespace / SqlDataRecord Class / GetBytes Method


In This Topic
    GetBytes Method (SqlDataRecord)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Function GetBytes( _
       ByVal i As System.Integer, _
       ByVal fieldOffset As System.Long, _
       ByVal buffer() As System.Byte, _
       ByVal bufferoffset As System.Integer, _
       ByVal length As System.Integer _
    ) As System.Long
    'Usage
     
    
    Dim instance As SqlDataRecord
    Dim i As System.Integer
    Dim fieldOffset As System.Long
    Dim buffer() As System.Byte
    Dim bufferoffset As System.Integer
    Dim length As System.Integer
    Dim value As System.Long
     
    value = instance.GetBytes(i, fieldOffset, buffer, bufferoffset, length)
    public System.long GetBytes( 
       System.int i,
       System.long fieldOffset,
       System.byte[] buffer,
       System.int bufferoffset,
       System.int length
    )

    Parameters

    i
    fieldOffset
    buffer
    bufferoffset
    length
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also