Class SQL

java.lang.Object
org.lwjgl.odbc.SQL

public class SQL extends Object
  • Field Details

  • Method Details

    • getLibrary

      public static SharedLibrary getLibrary()
      Returns the odbc SharedLibrary.
    • nSQLAllocHandle

      public static short nSQLAllocHandle(short HandleType, long InputHandle, long OutputHandle)
      SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType, SQLHANDLE InputHandle, SQLHANDLE * OutputHandle)
    • SQLAllocHandle

      public static short SQLAllocHandle(short HandleType, long InputHandle, PointerBuffer OutputHandle)
      SQLRETURN SQLAllocHandle(SQLSMALLINT HandleType, SQLHANDLE InputHandle, SQLHANDLE * OutputHandle)
    • nSQLConnect

      public static short nSQLConnect(long ConnectionHandle, long ServerName, short NameLength1, long UserName, short NameLength2, long Authentication, short NameLength3)
      SQLRETURN SQLConnect(SQLHDBC ConnectionHandle, SQLWCHAR * ServerName, SQLSMALLINT NameLength1, SQLWCHAR * UserName, SQLSMALLINT NameLength2, SQLWCHAR * Authentication, SQLSMALLINT NameLength3)
    • SQLConnect

      public static short SQLConnect(long ConnectionHandle, ByteBuffer ServerName, ByteBuffer UserName, ByteBuffer Authentication)
      SQLRETURN SQLConnect(SQLHDBC ConnectionHandle, SQLWCHAR * ServerName, SQLSMALLINT NameLength1, SQLWCHAR * UserName, SQLSMALLINT NameLength2, SQLWCHAR * Authentication, SQLSMALLINT NameLength3)
    • SQLConnect

      public static short SQLConnect(long ConnectionHandle, CharSequence ServerName, CharSequence UserName, CharSequence Authentication)
      SQLRETURN SQLConnect(SQLHDBC ConnectionHandle, SQLWCHAR * ServerName, SQLSMALLINT NameLength1, SQLWCHAR * UserName, SQLSMALLINT NameLength2, SQLWCHAR * Authentication, SQLSMALLINT NameLength3)
    • nSQLDataSources

      public static short nSQLDataSources(long EnvironmentHandle, short Direction, long ServerName, short BufferLength1, long NameLength1Ptr, long Description, short BufferLength2, long NameLength2Ptr)
      SQLRETURN SQLDataSources(SQLHENV EnvironmentHandle, SQLUSMALLINT Direction, SQLWCHAR * ServerName, SQLSMALLINT BufferLength1, SQLSMALLINT * NameLength1Ptr, SQLWCHAR * Description, SQLSMALLINT BufferLength2, SQLSMALLINT * NameLength2Ptr)
    • SQLDataSources

      public static short SQLDataSources(long EnvironmentHandle, short Direction, @Nullable ByteBuffer ServerName, ShortBuffer NameLength1Ptr, @Nullable ByteBuffer Description, ShortBuffer NameLength2Ptr)
      SQLRETURN SQLDataSources(SQLHENV EnvironmentHandle, SQLUSMALLINT Direction, SQLWCHAR * ServerName, SQLSMALLINT BufferLength1, SQLSMALLINT * NameLength1Ptr, SQLWCHAR * Description, SQLSMALLINT BufferLength2, SQLSMALLINT * NameLength2Ptr)
    • nSQLGetInfo

      public static short nSQLGetInfo(long ConnectionHandle, short InfoType, long InfoValuePtr, short BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle, SQLUSMALLINT InfoType, SQLPOINTER InfoValuePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • SQLGetInfo

      public static short SQLGetInfo(long ConnectionHandle, short InfoType, @Nullable ByteBuffer InfoValuePtr, @Nullable ShortBuffer StringLengthPtr)
      SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle, SQLUSMALLINT InfoType, SQLPOINTER InfoValuePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • SQLGetInfo

      public static short SQLGetInfo(long ConnectionHandle, short InfoType, @Nullable ShortBuffer InfoValuePtr, @Nullable ShortBuffer StringLengthPtr)
      SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle, SQLUSMALLINT InfoType, SQLPOINTER InfoValuePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • SQLGetInfo

      public static short SQLGetInfo(long ConnectionHandle, short InfoType, @Nullable IntBuffer InfoValuePtr, @Nullable ShortBuffer StringLengthPtr)
      SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle, SQLUSMALLINT InfoType, SQLPOINTER InfoValuePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • SQLGetInfo

      public static short SQLGetInfo(long ConnectionHandle, short InfoType, @Nullable PointerBuffer InfoValuePtr, @Nullable ShortBuffer StringLengthPtr)
      SQLRETURN SQLGetInfo(SQLHDBC ConnectionHandle, SQLUSMALLINT InfoType, SQLPOINTER InfoValuePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • nSQLGetFunctions

      public static short nSQLGetFunctions(long ConnectionHandle, short FunctionId, long SupportedPtr)
      SQLRETURN SQLGetFunctions(SQLHDBC ConnectionHandle, SQLUSMALLINT FunctionId, SQLUSMALLINT * SupportedPtr)
    • SQLGetFunctions

      public static short SQLGetFunctions(long ConnectionHandle, short FunctionId, ShortBuffer SupportedPtr)
      SQLRETURN SQLGetFunctions(SQLHDBC ConnectionHandle, SQLUSMALLINT FunctionId, SQLUSMALLINT * SupportedPtr)
    • SQLGetTypeInfo

      public static short SQLGetTypeInfo(long StatementHandle, short DataType)
      SQLRETURN SQLGetTypeInfo(SQLHSTMT StatementHandle, SQLSMALLINT DataType)
    • nSQLSetConnectAttr

      public static short nSQLSetConnectAttr(long ConnectionHandle, int Attribute, long Value, int StringLength)
      SQLRETURN SQLSetConnectAttr(SQLHDBC ConnectionHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • SQLSetConnectAttr

      public static short SQLSetConnectAttr(long ConnectionHandle, int Attribute, @Nullable ByteBuffer Value)
      SQLRETURN SQLSetConnectAttr(SQLHDBC ConnectionHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • nSQLGetConnectAttr

      public static short nSQLGetConnectAttr(long ConnectionHandle, int Attribute, long ValuePtr, int BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetConnectAttr(SQLHDBC ConnectionHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • SQLGetConnectAttr

      public static short SQLGetConnectAttr(long ConnectionHandle, int Attribute, @Nullable ByteBuffer ValuePtr, IntBuffer StringLengthPtr)
      SQLRETURN SQLGetConnectAttr(SQLHDBC ConnectionHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • nSQLSetEnvAttr

      public static short nSQLSetEnvAttr(long EnvironmentHandle, int Attribute, long Value, int StringLength)
      SQLRETURN SQLSetEnvAttr(SQLHENV EnvironmentHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • SQLSetEnvAttr

      public static short SQLSetEnvAttr(long EnvironmentHandle, int Attribute, @Nullable ByteBuffer Value)
      SQLRETURN SQLSetEnvAttr(SQLHENV EnvironmentHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • nSQLGetEnvAttr

      public static short nSQLGetEnvAttr(long EnvironmentHandle, int Attribute, long ValuePtr, int BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetEnvAttr(SQLHENV EnvironmentHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • SQLGetEnvAttr

      public static short SQLGetEnvAttr(long EnvironmentHandle, int Attribute, @Nullable ByteBuffer ValuePtr, IntBuffer StringLengthPtr)
      SQLRETURN SQLGetEnvAttr(SQLHENV EnvironmentHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • nSQLSetStmtAttr

      public static short nSQLSetStmtAttr(long StatementHandle, int Attribute, long Value, int StringLength)
      SQLRETURN SQLSetStmtAttr(SQLHSTMT StatementHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • SQLSetStmtAttr

      public static short SQLSetStmtAttr(long StatementHandle, int Attribute, @Nullable ByteBuffer Value)
      SQLRETURN SQLSetStmtAttr(SQLHSTMT StatementHandle, SQLINTEGER Attribute, SQLPOINTER Value, SQLINTEGER StringLength)
    • nSQLGetStmtAttr

      public static short nSQLGetStmtAttr(long StatementHandle, int Attribute, long ValuePtr, int BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetStmtAttr(SQLHSTMT StatementHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • SQLGetStmtAttr

      public static short SQLGetStmtAttr(long StatementHandle, int Attribute, @Nullable ByteBuffer ValuePtr, @Nullable IntBuffer StringLengthPtr)
      SQLRETURN SQLGetStmtAttr(SQLHSTMT StatementHandle, SQLINTEGER Attribute, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • nSQLGetDescField

      public static short nSQLGetDescField(long DescriptorHandle, short RecNumber, short FieldIdentifier, long ValuePtr, int BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetDescField(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • SQLGetDescField

      public static short SQLGetDescField(long DescriptorHandle, short RecNumber, short FieldIdentifier, @Nullable ByteBuffer ValuePtr, @Nullable IntBuffer StringLengthPtr)
      SQLRETURN SQLGetDescField(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, SQLPOINTER ValuePtr, SQLINTEGER BufferLength, SQLINTEGER * StringLengthPtr)
    • nSQLGetDescRec

      public static short nSQLGetDescRec(long DescriptorHandle, short RecNumber, long Name, short BufferLength, long StringLengthPtr, long TypePtr, long SubTypePtr, long LengthPtr, long PrecisionPtr, long ScalePtr, long NullablePtr)
      SQLRETURN SQLGetDescRec(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLWCHAR * Name, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr, SQLSMALLINT * TypePtr, SQLSMALLINT * SubTypePtr, SQLLEN * LengthPtr, SQLSMALLINT * PrecisionPtr, SQLSMALLINT * ScalePtr, SQLSMALLINT * NullablePtr)
    • SQLGetDescRec

      public static short SQLGetDescRec(long DescriptorHandle, short RecNumber, @Nullable ByteBuffer Name, @Nullable ShortBuffer StringLengthPtr, @Nullable ShortBuffer TypePtr, @Nullable ShortBuffer SubTypePtr, @Nullable PointerBuffer LengthPtr, @Nullable ShortBuffer PrecisionPtr, @Nullable ShortBuffer ScalePtr, @Nullable ShortBuffer NullablePtr)
      SQLRETURN SQLGetDescRec(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLWCHAR * Name, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr, SQLSMALLINT * TypePtr, SQLSMALLINT * SubTypePtr, SQLLEN * LengthPtr, SQLSMALLINT * PrecisionPtr, SQLSMALLINT * ScalePtr, SQLSMALLINT * NullablePtr)
    • nSQLSetDescField

      public static short nSQLSetDescField(long DescriptorHandle, short RecNumber, short FieldIdentifier, long ValuePtr, int BufferLength)
      SQLRETURN SQLSetDescField(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, SQLPOINTER ValuePtr, SQLINTEGER BufferLength)
    • SQLSetDescField

      public static short SQLSetDescField(long DescriptorHandle, short RecNumber, short FieldIdentifier, ByteBuffer ValuePtr)
      SQLRETURN SQLSetDescField(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, SQLPOINTER ValuePtr, SQLINTEGER BufferLength)
    • nSQLSetDescRec

      public static short nSQLSetDescRec(long DescriptorHandle, short RecNumber, short Type, short SubType, long Length, short Precision, short Scale, long DataPtr, long StringLengthPtr, long IndicatorPtr)
      SQLRETURN SQLSetDescRec(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT Type, SQLSMALLINT SubType, SQLLEN Length, SQLSMALLINT Precision, SQLSMALLINT Scale, SQLPOINTER DataPtr, SQLLEN * StringLengthPtr, SQLLEN * IndicatorPtr)
    • SQLSetDescRec

      public static short SQLSetDescRec(long DescriptorHandle, short RecNumber, short Type, short SubType, long Length, short Precision, short Scale, @Nullable ByteBuffer DataPtr, @Nullable PointerBuffer StringLengthPtr, @Nullable PointerBuffer IndicatorPtr)
      SQLRETURN SQLSetDescRec(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT Type, SQLSMALLINT SubType, SQLLEN Length, SQLSMALLINT Precision, SQLSMALLINT Scale, SQLPOINTER DataPtr, SQLLEN * StringLengthPtr, SQLLEN * IndicatorPtr)
    • SQLCopyDesc

      public static short SQLCopyDesc(long SourceDescHandle, long TargetDescHandle)
      SQLRETURN SQLCopyDesc(SQLHDESC SourceDescHandle, SQLHDESC TargetDescHandle)
    • nSQLPrepare

      public static short nSQLPrepare(long StatementHandle, long StatementText, int TextLength)
      SQLRETURN SQLPrepare(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • SQLPrepare

      public static short SQLPrepare(long StatementHandle, ByteBuffer StatementText)
      SQLRETURN SQLPrepare(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • SQLPrepare

      public static short SQLPrepare(long StatementHandle, CharSequence StatementText)
      SQLRETURN SQLPrepare(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • nSQLGetCursorName

      public static short nSQLGetCursorName(long StatementHandle, long CursorName, short BufferLength, long NameLengthPtr)
      SQLRETURN SQLGetCursorName(SQLHSTMT StatementHandle, SQLWCHAR * CursorName, SQLSMALLINT BufferLength, SQLSMALLINT * NameLengthPtr)
    • SQLGetCursorName

      public static short SQLGetCursorName(long StatementHandle, @Nullable ByteBuffer CursorName, ShortBuffer NameLengthPtr)
      SQLRETURN SQLGetCursorName(SQLHSTMT StatementHandle, SQLWCHAR * CursorName, SQLSMALLINT BufferLength, SQLSMALLINT * NameLengthPtr)
    • nSQLSetCursorName

      public static short nSQLSetCursorName(long StatementHandle, long CursorName, short NameLength)
      SQLRETURN SQLSetCursorName(SQLHSTMT StatementHandle, SQLWCHAR * CursorName, SQLSMALLINT NameLength)
    • SQLSetCursorName

      public static short SQLSetCursorName(long StatementHandle, ByteBuffer CursorName)
      SQLRETURN SQLSetCursorName(SQLHSTMT StatementHandle, SQLWCHAR * CursorName, SQLSMALLINT NameLength)
    • SQLExecute

      public static short SQLExecute(long StatementHandle)
      SQLRETURN SQLExecute(SQLHSTMT StatementHandle)
    • nSQLExecDirect

      public static short nSQLExecDirect(long StatementHandle, long StatementText, int TextLength)
      SQLRETURN SQLExecDirect(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • SQLExecDirect

      public static short SQLExecDirect(long StatementHandle, ByteBuffer StatementText)
      SQLRETURN SQLExecDirect(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • SQLExecDirect

      public static short SQLExecDirect(long StatementHandle, CharSequence StatementText)
      SQLRETURN SQLExecDirect(SQLHSTMT StatementHandle, SQLWCHAR * StatementText, SQLINTEGER TextLength)
    • nSQLParamData

      public static short nSQLParamData(long StatementHandle, long ValuePtrPtr)
      SQLRETURN SQLParamData(SQLHSTMT StatementHandle, SQLPOINTER * ValuePtrPtr)
    • SQLParamData

      public static short SQLParamData(long StatementHandle, PointerBuffer ValuePtrPtr)
      SQLRETURN SQLParamData(SQLHSTMT StatementHandle, SQLPOINTER * ValuePtrPtr)
    • nSQLPutData

      public static short nSQLPutData(long StatementHandle, long DataPtr, long StrLen_or_Ind)
      SQLRETURN SQLPutData(SQLHSTMT StatementHandle, SQLPOINTER DataPtr, SQLLEN StrLen_or_Ind)
    • SQLPutData

      public static short SQLPutData(long StatementHandle, ByteBuffer DataPtr)
      SQLRETURN SQLPutData(SQLHSTMT StatementHandle, SQLPOINTER DataPtr, SQLLEN StrLen_or_Ind)
    • nSQLRowCount

      public static short nSQLRowCount(long StatementHandle, long RowCountPtr)
      SQLRETURN SQLRowCount(SQLHSTMT StatementHandle, SQLLEN * RowCountPtr)
    • SQLRowCount

      public static short SQLRowCount(long StatementHandle, PointerBuffer RowCountPtr)
      SQLRETURN SQLRowCount(SQLHSTMT StatementHandle, SQLLEN * RowCountPtr)
    • nSQLNumResultCols

      public static short nSQLNumResultCols(long StatementHandle, long ColumnCountPtr)
      SQLRETURN SQLNumResultCols(SQLHSTMT StatementHandle, SQLSMALLINT * ColumnCountPtr)
    • SQLNumResultCols

      public static short SQLNumResultCols(long StatementHandle, ShortBuffer ColumnCountPtr)
      SQLRETURN SQLNumResultCols(SQLHSTMT StatementHandle, SQLSMALLINT * ColumnCountPtr)
    • nSQLDescribeCol

      public static short nSQLDescribeCol(long StatementHandle, short ColumnNumber, long ColumnName, short BufferLength, long NameLengthPtr, long DataTypePtr, long ColumnSizePtr, long DecimalDigitsPtr, long NullablePtr)
      SQLRETURN SQLDescribeCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLWCHAR * ColumnName, SQLSMALLINT BufferLength, SQLSMALLINT * NameLengthPtr, SQLSMALLINT * DataTypePtr, SQLULEN * ColumnSizePtr, SQLSMALLINT * DecimalDigitsPtr, SQLSMALLINT * NullablePtr)
    • SQLDescribeCol

      public static short SQLDescribeCol(long StatementHandle, short ColumnNumber, @Nullable ByteBuffer ColumnName, ShortBuffer NameLengthPtr, ShortBuffer DataTypePtr, PointerBuffer ColumnSizePtr, ShortBuffer DecimalDigitsPtr, ShortBuffer NullablePtr)
      SQLRETURN SQLDescribeCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLWCHAR * ColumnName, SQLSMALLINT BufferLength, SQLSMALLINT * NameLengthPtr, SQLSMALLINT * DataTypePtr, SQLULEN * ColumnSizePtr, SQLSMALLINT * DecimalDigitsPtr, SQLSMALLINT * NullablePtr)
    • nSQLColAttribute

      public static short nSQLColAttribute(long StatementHandle, short ColumnNumber, short FieldIdentifier, long CharacterAttributePtr, short BufferLength, long StringLengthPtr, long NumericAttributePtr)
      SQLRETURN SQLColAttribute(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLUSMALLINT FieldIdentifier, SQLPOINTER CharacterAttributePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr, SQLLEN * NumericAttributePtr)
    • SQLColAttribute

      public static short SQLColAttribute(long StatementHandle, short ColumnNumber, short FieldIdentifier, @Nullable ByteBuffer CharacterAttributePtr, ShortBuffer StringLengthPtr, PointerBuffer NumericAttributePtr)
      SQLRETURN SQLColAttribute(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLUSMALLINT FieldIdentifier, SQLPOINTER CharacterAttributePtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr, SQLLEN * NumericAttributePtr)
    • nSQLBindCol

      public static short nSQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, long TargetValuePtr, long BufferLength, long StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable ByteBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable ShortBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable IntBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable LongBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable FloatBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLBindCol

      public static short SQLBindCol(long StatementHandle, short ColumnNumber, short TargetType, @Nullable DoubleBuffer TargetValuePtr, @Nullable PointerBuffer StrLen_or_Ind)
      SQLRETURN SQLBindCol(SQLHSTMT StatementHandle, SQLUSMALLINT ColumnNumber, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_Ind)
    • SQLFetch

      public static short SQLFetch(long StatementHandle)
      SQLRETURN SQLFetch(SQLHSTMT StatementHandle)
    • SQLFetchScroll

      public static short SQLFetchScroll(long StatementHandle, short FetchOrientation, long FetchOffset)
      SQLRETURN SQLFetchScroll(SQLHSTMT StatementHandle, SQLSMALLINT FetchOrientation, SQLLEN FetchOffset)
    • nSQLGetData

      public static short nSQLGetData(long StatementHandle, short Col_or_Param_Num, short TargetType, long TargetValuePtr, long BufferLength, long StrLen_or_IndPtr)
      SQLRETURN SQLGetData(SQLHSTMT StatementHandle, SQLUSMALLINT Col_or_Param_Num, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_IndPtr)
    • SQLGetData

      public static short SQLGetData(long StatementHandle, short Col_or_Param_Num, short TargetType, ByteBuffer TargetValuePtr, PointerBuffer StrLen_or_IndPtr)
      SQLRETURN SQLGetData(SQLHSTMT StatementHandle, SQLUSMALLINT Col_or_Param_Num, SQLSMALLINT TargetType, SQLPOINTER TargetValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_IndPtr)
    • nSQLGetDiagField

      public static short nSQLGetDiagField(short HandleType, long Handle, short RecNumber, short DiagIdentifier, long DiagInfoPtr, short BufferLength, long StringLengthPtr)
      SQLRETURN SQLGetDiagField(SQLSMALLINT HandleType, SQLHANDLE Handle, SQLSMALLINT RecNumber, SQLSMALLINT DiagIdentifier, SQLPOINTER DiagInfoPtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • SQLGetDiagField

      public static short SQLGetDiagField(short HandleType, long Handle, short RecNumber, short DiagIdentifier, @Nullable ByteBuffer DiagInfoPtr, ShortBuffer StringLengthPtr)
      SQLRETURN SQLGetDiagField(SQLSMALLINT HandleType, SQLHANDLE Handle, SQLSMALLINT RecNumber, SQLSMALLINT DiagIdentifier, SQLPOINTER DiagInfoPtr, SQLSMALLINT BufferLength, SQLSMALLINT * StringLengthPtr)
    • nSQLGetDiagRec

      public static short nSQLGetDiagRec(short HandleType, long Handle, short RecNumber, long SQLState, long NativeErrorPtr, long MessageText, short BufferLength, long TextLengthPtr)
      SQLRETURN SQLGetDiagRec(SQLSMALLINT HandleType, SQLHANDLE Handle, SQLSMALLINT RecNumber, SQLWCHAR * SQLState, SQLINTEGER * NativeErrorPtr, SQLWCHAR * MessageText, SQLSMALLINT BufferLength, SQLSMALLINT * TextLengthPtr)
    • SQLGetDiagRec

      public static short SQLGetDiagRec(short HandleType, long Handle, short RecNumber, ByteBuffer SQLState, IntBuffer NativeErrorPtr, @Nullable ByteBuffer MessageText, ShortBuffer TextLengthPtr)
      SQLRETURN SQLGetDiagRec(SQLSMALLINT HandleType, SQLHANDLE Handle, SQLSMALLINT RecNumber, SQLWCHAR * SQLState, SQLINTEGER * NativeErrorPtr, SQLWCHAR * MessageText, SQLSMALLINT BufferLength, SQLSMALLINT * TextLengthPtr)
    • SQLFreeStmt

      public static short SQLFreeStmt(long StatementHandle, short Option)
      SQLRETURN SQLFreeStmt(SQLHSTMT StatementHandle, SQLUSMALLINT Option)
    • SQLCloseCursor

      public static short SQLCloseCursor(long StatementHandle)
      SQLRETURN SQLCloseCursor(SQLHSTMT StatementHandle)
    • SQLCancel

      public static short SQLCancel(long StatementHandle)
      SQLRETURN SQLCancel(SQLHSTMT StatementHandle)
    • SQLCancelHandle

      public static short SQLCancelHandle(short HandleType, long Handle)
      SQLRETURN SQLCancelHandle(SQLSMALLINT HandleType, SQLHANDLE Handle)
    • SQLEndTran

      public static short SQLEndTran(short HandleType, long Handle, short CompletionType)
      SQLRETURN SQLEndTran(SQLSMALLINT HandleType, SQLHANDLE Handle, SQLSMALLINT CompletionType)
    • SQLDisconnect

      public static short SQLDisconnect(long ConnectionHandle)
      SQLRETURN SQLDisconnect(SQLHDBC ConnectionHandle)
    • SQLFreeHandle

      public static short SQLFreeHandle(short HandleType, long Handle)
      SQLRETURN SQLFreeHandle(SQLSMALLINT HandleType, SQLHANDLE Handle)
    • nSQLCompleteAsync

      public static short nSQLCompleteAsync(short HandleType, long Handle, long AsyncRetCodePtr)
      SQLRETURN SQLCompleteAsync(SQLSMALLINT HandleType, SQLHANDLE Handle, RETCODE * AsyncRetCodePtr)
    • SQLCompleteAsync

      public static short SQLCompleteAsync(short HandleType, long Handle, ShortBuffer AsyncRetCodePtr)
      SQLRETURN SQLCompleteAsync(SQLSMALLINT HandleType, SQLHANDLE Handle, RETCODE * AsyncRetCodePtr)
    • nSQLColumns

      public static short nSQLColumns(long StatementHandle, long CatalogName, short NameLength1, long SchemaName, short NameLength2, long TableName, short NameLength3, long ColumnName, short NameLength4)
      SQLRETURN SQLColumns(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLWCHAR * ColumnName, SQLSMALLINT NameLength4)
    • SQLColumns

      public static short SQLColumns(long StatementHandle, @Nullable ByteBuffer CatalogName, @Nullable ByteBuffer SchemaName, @Nullable ByteBuffer TableName, @Nullable ByteBuffer ColumnName)
      SQLRETURN SQLColumns(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLWCHAR * ColumnName, SQLSMALLINT NameLength4)
    • nSQLSpecialColumns

      public static short nSQLSpecialColumns(long StatementHandle, short IdentifierType, long CatalogName, short NameLength1, long SchemaName, short NameLength2, long TableName, short NameLength3, short Scope, short Nullable)
      SQLRETURN SQLSpecialColumns(SQLHSTMT StatementHandle, SQLUSMALLINT IdentifierType, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLUSMALLINT Scope, SQLUSMALLINT Nullable)
    • SQLSpecialColumns

      public static short SQLSpecialColumns(long StatementHandle, short IdentifierType, @Nullable ByteBuffer CatalogName, @Nullable ByteBuffer SchemaName, @Nullable ByteBuffer TableName, short Scope, short Nullable)
      SQLRETURN SQLSpecialColumns(SQLHSTMT StatementHandle, SQLUSMALLINT IdentifierType, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLUSMALLINT Scope, SQLUSMALLINT Nullable)
    • nSQLStatistics

      public static short nSQLStatistics(long StatementHandle, long CatalogName, short NameLength1, long SchemaName, short NameLength2, long TableName, short NameLength3, short Unique, short Reserved)
      SQLRETURN SQLStatistics(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLUSMALLINT Unique, SQLUSMALLINT Reserved)
    • SQLStatistics

      public static short SQLStatistics(long StatementHandle, @Nullable ByteBuffer CatalogName, @Nullable ByteBuffer SchemaName, @Nullable ByteBuffer TableName, short Unique, short Reserved)
      SQLRETURN SQLStatistics(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLUSMALLINT Unique, SQLUSMALLINT Reserved)
    • nSQLTables

      public static short nSQLTables(long StatementHandle, long CatalogName, short NameLength1, long SchemaName, short NameLength2, long TableName, short NameLength3, long TableType, short NameLength4)
      SQLRETURN SQLTables(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLWCHAR * TableType, SQLSMALLINT NameLength4)
    • SQLTables

      public static short SQLTables(long StatementHandle, @Nullable ByteBuffer CatalogName, @Nullable ByteBuffer SchemaName, @Nullable ByteBuffer TableName, @Nullable ByteBuffer TableType)
      SQLRETURN SQLTables(SQLHSTMT StatementHandle, SQLWCHAR * CatalogName, SQLSMALLINT NameLength1, SQLWCHAR * SchemaName, SQLSMALLINT NameLength2, SQLWCHAR * TableName, SQLSMALLINT NameLength3, SQLWCHAR * TableType, SQLSMALLINT NameLength4)
    • SQLTransact

      public static short SQLTransact(long EnvironmentHandle, long ConnectionHandle, short CompletionType)
      SQLRETURN SQLTransact(SQLHENV EnvironmentHandle, SQLHDBC ConnectionHandle, SQLUSMALLINT CompletionType)
    • nSQLDriverConnect

      public static short nSQLDriverConnect(long ConnectionHandle, long WindowHandle, long InConnectionString, short StringLength1, long OutConnectionString, short BufferLength, long StringLength2Ptr, short DriverCompletion)
      SQLRETURN SQLDriverConnect(SQLHDBC ConnectionHandle, SQLHWND WindowHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr, SQLUSMALLINT DriverCompletion)
    • SQLDriverConnect

      public static short SQLDriverConnect(long ConnectionHandle, long WindowHandle, ByteBuffer InConnectionString, @Nullable ByteBuffer OutConnectionString, @Nullable ShortBuffer StringLength2Ptr, short DriverCompletion)
      SQLRETURN SQLDriverConnect(SQLHDBC ConnectionHandle, SQLHWND WindowHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr, SQLUSMALLINT DriverCompletion)
    • SQLDriverConnect

      public static short SQLDriverConnect(long ConnectionHandle, long WindowHandle, CharSequence InConnectionString, @Nullable ByteBuffer OutConnectionString, @Nullable ShortBuffer StringLength2Ptr, short DriverCompletion)
      SQLRETURN SQLDriverConnect(SQLHDBC ConnectionHandle, SQLHWND WindowHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr, SQLUSMALLINT DriverCompletion)
    • nSQLBrowseConnect

      public static short nSQLBrowseConnect(long ConnectionHandle, long InConnectionString, short StringLength1, long OutConnectionString, short BufferLength, long StringLength2Ptr)
      SQLRETURN SQLBrowseConnect(SQLHDBC ConnectionHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr)
    • SQLBrowseConnect

      public static short SQLBrowseConnect(long ConnectionHandle, ByteBuffer InConnectionString, @Nullable ByteBuffer OutConnectionString, @Nullable ShortBuffer StringLength2Ptr)
      SQLRETURN SQLBrowseConnect(SQLHDBC ConnectionHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr)
    • SQLBrowseConnect

      public static short SQLBrowseConnect(long ConnectionHandle, CharSequence InConnectionString, @Nullable ByteBuffer OutConnectionString, @Nullable ShortBuffer StringLength2Ptr)
      SQLRETURN SQLBrowseConnect(SQLHDBC ConnectionHandle, SQLWCHAR * InConnectionString, SQLSMALLINT StringLength1, SQLWCHAR * OutConnectionString, SQLSMALLINT BufferLength, SQLSMALLINT * StringLength2Ptr)
    • SQLBulkOperations

      public static short SQLBulkOperations(long StatementHandle, short Operation)
      SQLRETURN SQLBulkOperations(SQLHSTMT StatementHandle, SQLUSMALLINT Operation)
    • nSQLColumnPrivileges

      public static short nSQLColumnPrivileges(long hstmt, long szCatalogName, short cchCatalogName, long szSchemaName, short cchSchemaName, long szTableName, short cchTableName, long szColumnName, short cchColumnName)
      SQLRETURN SQLColumnPrivileges(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName, SQLWCHAR * szColumnName, SQLSMALLINT cchColumnName)
    • SQLColumnPrivileges

      public static short SQLColumnPrivileges(long hstmt, @Nullable ByteBuffer szCatalogName, @Nullable ByteBuffer szSchemaName, @Nullable ByteBuffer szTableName, @Nullable ByteBuffer szColumnName)
      SQLRETURN SQLColumnPrivileges(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName, SQLWCHAR * szColumnName, SQLSMALLINT cchColumnName)
    • nSQLDescribeParam

      public static short nSQLDescribeParam(long StatementHandle, short ParameterNumber, long DataTypePtr, long ParameterSizePtr, long DecimalDigitsPtr, long NullablePtr)
      SQLRETURN SQLDescribeParam(SQLHSTMT StatementHandle, SQLUSMALLINT ParameterNumber, SQLSMALLINT * DataTypePtr, SQLULEN * ParameterSizePtr, SQLSMALLINT * DecimalDigitsPtr, SQLSMALLINT * NullablePtr)
    • SQLDescribeParam

      public static short SQLDescribeParam(long StatementHandle, short ParameterNumber, @Nullable ShortBuffer DataTypePtr, @Nullable PointerBuffer ParameterSizePtr, @Nullable ShortBuffer DecimalDigitsPtr, @Nullable ShortBuffer NullablePtr)
      SQLRETURN SQLDescribeParam(SQLHSTMT StatementHandle, SQLUSMALLINT ParameterNumber, SQLSMALLINT * DataTypePtr, SQLULEN * ParameterSizePtr, SQLSMALLINT * DecimalDigitsPtr, SQLSMALLINT * NullablePtr)
    • nSQLExtendedFetch

      public static short nSQLExtendedFetch(long hstmt, short fFetchType, long irow, long pcrow, long rgfRowStatus)
      SQLRETURN SQLExtendedFetch(SQLHSTMT hstmt, SQLUSMALLINT fFetchType, SQLLEN irow, SQLULEN * pcrow, SQLUSMALLINT * rgfRowStatus)
    • SQLExtendedFetch

      public static short SQLExtendedFetch(long hstmt, short fFetchType, long irow, @Nullable PointerBuffer pcrow, @Nullable ShortBuffer rgfRowStatus)
      SQLRETURN SQLExtendedFetch(SQLHSTMT hstmt, SQLUSMALLINT fFetchType, SQLLEN irow, SQLULEN * pcrow, SQLUSMALLINT * rgfRowStatus)
    • nSQLForeignKeys

      public static short nSQLForeignKeys(long hstmt, long szPkCatalogName, short cchPkCatalogName, long szPkSchemaName, short cchPkSchemaName, long szPkTableName, short cchPkTableName, long szFkCatalogName, short cchFkCatalogName, long szFkSchemaName, short cchFkSchemaName, long szFkTableName, short cchFkTableName)
      SQLRETURN SQLForeignKeys(SQLHSTMT hstmt, SQLWCHAR * szPkCatalogName, SQLSMALLINT cchPkCatalogName, SQLWCHAR * szPkSchemaName, SQLSMALLINT cchPkSchemaName, SQLWCHAR * szPkTableName, SQLSMALLINT cchPkTableName, SQLWCHAR * szFkCatalogName, SQLSMALLINT cchFkCatalogName, SQLWCHAR * szFkSchemaName, SQLSMALLINT cchFkSchemaName, SQLWCHAR * szFkTableName, SQLSMALLINT cchFkTableName)
    • SQLForeignKeys

      public static short SQLForeignKeys(long hstmt, @Nullable ByteBuffer szPkCatalogName, @Nullable ByteBuffer szPkSchemaName, @Nullable ByteBuffer szPkTableName, @Nullable ByteBuffer szFkCatalogName, @Nullable ByteBuffer szFkSchemaName, @Nullable ByteBuffer szFkTableName)
      SQLRETURN SQLForeignKeys(SQLHSTMT hstmt, SQLWCHAR * szPkCatalogName, SQLSMALLINT cchPkCatalogName, SQLWCHAR * szPkSchemaName, SQLSMALLINT cchPkSchemaName, SQLWCHAR * szPkTableName, SQLSMALLINT cchPkTableName, SQLWCHAR * szFkCatalogName, SQLSMALLINT cchFkCatalogName, SQLWCHAR * szFkSchemaName, SQLSMALLINT cchFkSchemaName, SQLWCHAR * szFkTableName, SQLSMALLINT cchFkTableName)
    • SQLMoreResults

      public static short SQLMoreResults(long StatementHandle)
      SQLRETURN SQLMoreResults(SQLHSTMT StatementHandle)
    • nSQLNativeSql

      public static short nSQLNativeSql(long ConnectionHandle, long InStatementText, int TextLength1, long OutStatementText, int BufferLength, long TextLength2Ptr)
      SQLRETURN SQLNativeSql(SQLHDBC ConnectionHandle, SQLWCHAR * InStatementText, SQLINTEGER TextLength1, SQLWCHAR * OutStatementText, SQLINTEGER BufferLength, SQLINTEGER * TextLength2Ptr)
    • SQLNativeSql

      public static short SQLNativeSql(long ConnectionHandle, ByteBuffer InStatementText, @Nullable ByteBuffer OutStatementText, IntBuffer TextLength2Ptr)
      SQLRETURN SQLNativeSql(SQLHDBC ConnectionHandle, SQLWCHAR * InStatementText, SQLINTEGER TextLength1, SQLWCHAR * OutStatementText, SQLINTEGER BufferLength, SQLINTEGER * TextLength2Ptr)
    • SQLNativeSql

      public static short SQLNativeSql(long ConnectionHandle, CharSequence InStatementText, @Nullable ByteBuffer OutStatementText, IntBuffer TextLength2Ptr)
      SQLRETURN SQLNativeSql(SQLHDBC ConnectionHandle, SQLWCHAR * InStatementText, SQLINTEGER TextLength1, SQLWCHAR * OutStatementText, SQLINTEGER BufferLength, SQLINTEGER * TextLength2Ptr)
    • nSQLNumParams

      public static short nSQLNumParams(long StatementHandle, long ParameterCountPtr)
      SQLRETURN SQLNumParams(SQLHSTMT StatementHandle, SQLSMALLINT * ParameterCountPtr)
    • SQLNumParams

      public static short SQLNumParams(long StatementHandle, @Nullable ShortBuffer ParameterCountPtr)
      SQLRETURN SQLNumParams(SQLHSTMT StatementHandle, SQLSMALLINT * ParameterCountPtr)
    • nSQLParamOptions

      public static short nSQLParamOptions(long hstmt, long crow, long pirow)
      SQLRETURN SQLParamOptions(SQLHSTMT hstmt, SQLULEN crow, SQLULEN * pirow)
    • SQLParamOptions

      public static short SQLParamOptions(long hstmt, long crow, PointerBuffer pirow)
      SQLRETURN SQLParamOptions(SQLHSTMT hstmt, SQLULEN crow, SQLULEN * pirow)
    • nSQLPrimaryKeys

      public static short nSQLPrimaryKeys(long hstmt, long szCatalogName, short cchCatalogName, long szSchemaName, short cchSchemaName, long szTableName, short cchTableName)
      SQLRETURN SQLPrimaryKeys(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName)
    • SQLPrimaryKeys

      public static short SQLPrimaryKeys(long hstmt, @Nullable ByteBuffer szCatalogName, @Nullable ByteBuffer szSchemaName, @Nullable ByteBuffer szTableName)
      SQLRETURN SQLPrimaryKeys(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName)
    • nSQLProcedureColumns

      public static short nSQLProcedureColumns(long hstmt, long szCatalogName, short cchCatalogName, long szSchemaName, short cchSchemaName, long szProcName, short cchProcName, long szColumnName, short cchColumnName)
      SQLRETURN SQLProcedureColumns(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szProcName, SQLSMALLINT cchProcName, SQLWCHAR * szColumnName, SQLSMALLINT cchColumnName)
    • SQLProcedureColumns

      public static short SQLProcedureColumns(long hstmt, @Nullable ByteBuffer szCatalogName, @Nullable ByteBuffer szSchemaName, @Nullable ByteBuffer szProcName, @Nullable ByteBuffer szColumnName)
      SQLRETURN SQLProcedureColumns(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szProcName, SQLSMALLINT cchProcName, SQLWCHAR * szColumnName, SQLSMALLINT cchColumnName)
    • nSQLProcedures

      public static short nSQLProcedures(long hstmt, long szCatalogName, short cchCatalogName, long szSchemaName, short cchSchemaName, long szProcName, short cchProcName)
      SQLRETURN SQLProcedures(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szProcName, SQLSMALLINT cchProcName)
    • SQLProcedures

      public static short SQLProcedures(long hstmt, @Nullable ByteBuffer szCatalogName, @Nullable ByteBuffer szSchemaName, @Nullable ByteBuffer szProcName)
      SQLRETURN SQLProcedures(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szProcName, SQLSMALLINT cchProcName)
    • SQLSetPos

      public static short SQLSetPos(long StatementHandle, long RowNumber, short Operation, short LockType)
      SQLRETURN SQLSetPos(SQLHSTMT StatementHandle, SQLSETPOSIROW RowNumber, SQLUSMALLINT Operation, SQLUSMALLINT LockType)
    • nSQLTablePrivileges

      public static short nSQLTablePrivileges(long hstmt, long szCatalogName, short cchCatalogName, long szSchemaName, short cchSchemaName, long szTableName, short cchTableName)
      SQLRETURN SQLTablePrivileges(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName)
    • SQLTablePrivileges

      public static short SQLTablePrivileges(long hstmt, @Nullable ByteBuffer szCatalogName, @Nullable ByteBuffer szSchemaName, @Nullable ByteBuffer szTableName)
      SQLRETURN SQLTablePrivileges(SQLHSTMT hstmt, SQLWCHAR * szCatalogName, SQLSMALLINT cchCatalogName, SQLWCHAR * szSchemaName, SQLSMALLINT cchSchemaName, SQLWCHAR * szTableName, SQLSMALLINT cchTableName)
    • nSQLDrivers

      public static short nSQLDrivers(long EnvironmentHandle, short Direction, long DriverDescription, short BufferLength1, long DescriptionLengthPtr, long DriverAttributes, short BufferLength2, long AttributesLengthPtr)
      SQLRETURN SQLDrivers(SQLHENV EnvironmentHandle, SQLUSMALLINT Direction, SQLWCHAR * DriverDescription, SQLSMALLINT BufferLength1, SQLSMALLINT * DescriptionLengthPtr, SQLWCHAR * DriverAttributes, SQLSMALLINT BufferLength2, SQLSMALLINT * AttributesLengthPtr)
    • SQLDrivers

      public static short SQLDrivers(long EnvironmentHandle, short Direction, @Nullable ByteBuffer DriverDescription, @Nullable ShortBuffer DescriptionLengthPtr, @Nullable ByteBuffer DriverAttributes, @Nullable ShortBuffer AttributesLengthPtr)
      SQLRETURN SQLDrivers(SQLHENV EnvironmentHandle, SQLUSMALLINT Direction, SQLWCHAR * DriverDescription, SQLSMALLINT BufferLength1, SQLSMALLINT * DescriptionLengthPtr, SQLWCHAR * DriverAttributes, SQLSMALLINT BufferLength2, SQLSMALLINT * AttributesLengthPtr)
    • nSQLBindParameter

      public static short nSQLBindParameter(long StatementHandle, short ParameterNumber, short InputOutputType, short ValueType, short ParameterType, long ColumnSize, short DecimalDigits, long ParameterValuePtr, long BufferLength, long StrLen_or_IndPtr)
      SQLRETURN SQLBindParameter(SQLHSTMT StatementHandle, SQLUSMALLINT ParameterNumber, SQLSMALLINT InputOutputType, SQLSMALLINT ValueType, SQLSMALLINT ParameterType, SQLULEN ColumnSize, SQLSMALLINT DecimalDigits, SQLPOINTER ParameterValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_IndPtr)
    • SQLBindParameter

      public static short SQLBindParameter(long StatementHandle, short ParameterNumber, short InputOutputType, short ValueType, short ParameterType, long ColumnSize, short DecimalDigits, @Nullable ByteBuffer ParameterValuePtr, @Nullable PointerBuffer StrLen_or_IndPtr)
      SQLRETURN SQLBindParameter(SQLHSTMT StatementHandle, SQLUSMALLINT ParameterNumber, SQLSMALLINT InputOutputType, SQLSMALLINT ValueType, SQLSMALLINT ParameterType, SQLULEN ColumnSize, SQLSMALLINT DecimalDigits, SQLPOINTER ParameterValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_IndPtr)
    • nSQLAllocHandleStd

      public static short nSQLAllocHandleStd(short fHandleType, long hInput, long phOutput)
      SQLRETURN SQLAllocHandleStd(SQLSMALLINT fHandleType, SQLHANDLE hInput, SQLHANDLE * phOutput)
    • SQLAllocHandleStd

      public static short SQLAllocHandleStd(short fHandleType, long hInput, PointerBuffer phOutput)
      SQLRETURN SQLAllocHandleStd(SQLSMALLINT fHandleType, SQLHANDLE hInput, SQLHANDLE * phOutput)