SQLGetCursorName function

Returns the name associated with a cursor for a specified statement, for UltraLite ODBC.

Syntax
UL_FN_SPEC SQLRETURN UL_FN_MOD SQLGetCursorName (
    SQLHSTMT StatementHandle,
    SQLTCHAR * CursorName,
    SQLSMALLINT BufferLength,
    SQLSMALLINT * NameLength );
Parameters
  • StatementHandle   A statement handle.

  • CursorName   A pointer to a buffer in which to return the name of the cursor associated with StatementHandle.

  • BufferLength   The length of *CursorName.

  • NameLength   A pointer to memory in which to return the total number of bytes (excluding the null-termination character) available to return in *CursorName.

See also