ResultGetRecord() public static method

public static ResultGetRecord ( IntPtr handle, int row ) : byte[]
handle System.IntPtr
row int
return byte[]
コード例 #1
0
        // public extern void *ResultGetKeyData(IntPtr handle, ref int size);
        // TODO

        /// <summary>
        /// Returns the record of a specific row.
        /// </summary>
        public byte[] GetRecord(int row)
        {
            return(NativeMethods.ResultGetRecord(handle, row));
        }