Conformance
Version Introduced:ODBC 3.0
Standards Compliance:ISO 92
Summary
SQLGetDiagField returns the current value of a field of a record of the diagnostic data structure (associated with a specified handle) that contains error, warning, and status information.
Syntax
SQLRETURN SQLGetDiagField(
SQLSMALLINTHandleType,
SQLHANDLEHandle,
SQLSMALLINTRecNumber,
SQLSMALLINTDiagIdentifier,
SQLPOINTERDiagInfoPtr,
SQLSMALLINTBufferLength,
SQLSMALLINT *StringLengthPtr);
Arguments
HandleType
[Input]
A handle type identifier that describes the type of handle for which diagnostics are required. Must be one of the following:
SQL_HANDLE_ENV
SQL_HANDLE_DBC
SQL_HANDLE_STMT
SQL_HANDLE_DESC
Handle
[Input]
A handle for the diagnostic data structure, of the type indicated by HandleType. If HandleType is SQL_HANDLE_ENV, Handle can be either a shared or unshared environment handle.
RecNumber
[Input]
Indicates the status record from which the application seeks information. Status records are numbered from 1. If the DiagIdentifier argument indicates any field of the diagnostics header, RecNumber is ignored. If not, it should be greater than 0.
DiagIdentifier
[Input]
Indicates the field of the diagnostic whose value is to be returned. For more information, see the “DiagIdentifier Argument” section in “Comments.”
DiagInfoPtr
[Output]
Pointer to a buffer in which to return the diagnostic information. The data type depends on the value of DiagIdentifier.
BufferLength
[Input]
If DiagIdentifier is an ODBC-defined diagnostic and DiagInfoPtr points to a character string or a binary buffer, this argument should be the length of *DiagInfoPtr. If DiagIdentifier is an ODBC-defined field and *DiagInfoPtr is an integer, BufferLength is ignored. If the value in *DiagInfoPtr is a Unicode string (when calling SQLGetDiagFieldW), the BufferLength argument must be an even number.
If DiagIdentifier is a driver-defined field, the application indicates the nature of the field to the Driver Manager by setting the BufferLength argument. BufferLength can have the following values:
StringLengthPtr
[Output]
Pointer to a buffer in which to return the total number of bytes (excluding the number of bytes required for the null-termination character) available to return in *DiagInfoPtr, for character data. If the number of bytes available to return is greater than BufferLength, then the text in *DiagInfoPtr is truncated to BufferLength minus the length of a null-termination character.
Returns
SQL_SUCCESS, SQL_SUCCESS_WITH_INFO, SQL_ERROR, SQL_INVALID_HANDLE, or SQL_NO_DATA.
Diagnostics
SQLGetDiagField does not post diagnostic records for itself. It uses the following return values to report the outcome of its own execution:
Comments
An application typically calls SQLGetDiagField to accomplish one of three goals:
Any ODBC function can post zero or more diagnostic records each time it is called, so an application can call SQLGetDiagField after any ODBC function call. There is no limit to the number of diagnostic records that can be stored at any one time. SQLGetDiagField retrieves only the diagnostic information most recently associated with the diagnostic data structure specified in the Handle argument. If the application calls an ODBC function other than SQLGetDiagField or SQLGetDiagRec, any diagnostic information from a previous call with the same handle is lost.
An application can scan all diagnostic records by incrementing RecNumber, as long as SQLGetDiagField returns SQL_SUCCESS. The number of status records is indicated in the SQL_DIAG_NUMBER header field. Calls to SQLGetDiagField are non-destructive to the header and record fields. The application can call SQLGetDiagField again at a later time to retrieve a field from a record, as long as a function other than the diagnostic functions has not been called in the interim, which would post records on the same handle.
An application can call SQLGetDiagField to return any diagnostic field at any time, with the exception of SQL_DIAG_CURSOR_ROW_COUNT or SQL_DIAG_ROW_COUNT, which will return SQL_ERROR if Handle is not a statement handle. If any other diagnostic field is undefined, the call to SQLGetDiagField will return SQL_SUCCESS (provided no other diagnostic is encountered), and an undefined value is returned for the field.
For more information, see “Using SQLGetDiagRec and SQLGetDiagField” and “Implementing SQLGetDiagRec and SQLGetDiagField” in Chapter 15, “Diagnostics.”
HandleType Argument
Each handle type can have diagnostic information associated with it. The HandleType argument denotes the handle type of Handle.
Some header and record fields cannot be returned for all types of handles: environment, connection, statement, and descriptor. Those handles for which a field is not applicable are indicated in the “Header Field” and “Record Fields” sections following.
If HandleType is SQL_HANDLE_ENV, Handle can be either a shared or unshared environment handle.
No driver-specific header diagnostic fields should be associated with an environment handle.
The only diagnostic header fields that are defined for a descriptor handle are SQL_DIAG_NUMBER and SQL_DIAG_RETURNCODE.
DiagIdentifier Argument
This argument indicates the identifier of the field required from the diagnostic data structure. If RecNumber is greater than or equal to 1, the data in the field describes the diagnostic information returned by a function. If RecNumber is 0, the field is in the header of the diagnostic data structure, and therefore contains data pertaining to the function call that returned the diagnostic information, not the specific information.
Drivers can define driver-specific header and record fields in the diagnostic data structure.
An ODBC 3.x application working with an ODBC 2.x driver will only be able to call SQLGetDiagField with a DiagIdentifier argument of SQL_DIAG_CLASS_ORIGIN, SQL_DIAG_CLASS_SUBCLASS_ORIGIN, SQL_DIAG_CONNECTION_NAME, SQL_DIAG_MESSAGE_TEXT, SQL_DIAG_NATIVE, SQL_DIAG_NUMBER, SQL_DIAG_RETURNCODE, SQL_DIAG_SERVER_NAME, or SQL_DIAG_SQLSTATE. All other diagnostic fields will return SQL_ERROR.
The following header fields can be included in the DiagIdentifier argument.
DiagIdentifier | Return type | Returns |
SQL_DIAG_ CURSOR_ROW_ COUNT |
SQLINTEGER | This field contains the count of rows in the cursor. Its semantics depend upon the SQLGetInfo information types SQL_DYNAMIC_CURSOR_ ATTRIBUTES2, SQL_FORWARD_ONLY_CURSOR_ ATTRIBUTES2, SQL_KEYSET_CURSOR_ ATTRIBUTES2, and SQL_STATIC_CURSOR_ ATTRIBUTES2, which indicate which row counts are available for each cursor type (in the SQL_CA2_CRC_EXACT and SQL_CA2_CRC_APPROXIMATE bits). The contents of this field are defined only for statement handles and only after SQLExecute, SQLExecDirect, or SQLMoreResults has been called. Calling SQLGetDiagField with a DiagIdentifier of SQL_DIAG_CURSOR_ROW_COUNT on other than a statement handle will return SQL_ERROR. |
SQL_DIAG_DYNAMIC_ FUNCTION |
SQLCHAR * | This is a string that describes the SQL statement that the underlying function executed (see “Values of the Dynamic Function fields” later in this section for specific values). The contents of this field are defined only for statement handles, and only after a call to SQLExecute, SQLExecDirect, or SQLMoreResults. Calling SQLGetDiagField with a DiagIdentifier of SQL_DIAG_DYNAMIC_FUNCTION on other than a statement handle will return SQL_ERROR. The value of this field is undefined before a call to SQLExecute or SQLExecDirect. |
SQL_DIAG_DYNAMIC_ FUNCTION_CODE |
SQLINTEGER | This is a numeric code that describes the SQL statement that was executed by the underlying function (see “Values of the Dynamic Function Fields” later in this section for specific values). The contents of this field are defined only for statement handles, and only after a call to SQLExecute, SQLExecDirect, or SQLMoreResults. Calling SQLGetDiagField with a DiagIdentifier of SQL_DIAG_DYNAMIC_FUNCTION_ CODE on other than a statement handle will return SQL_ERROR. The value of this field is undefined before a call to SQLExecute or SQLExecDirect. |
SQL_DIAG_NUMBER | SQLINTEGER | The number of status records that are available for the specified handle. |
SQL_DIAG_ RETURNCODE |
SQLRETURN | Return code returned by the function. For a list of return codes, see “Return Codes” in Chapter 15, “Diagnostics.” The driver does not have to implement SQL_DIAG_RETURNCODE; it is always implemented by the Driver Manager. If no function has yet been called on the Handle, SQL_SUCCESS will be returned for SQL_DIAG_RETURNCODE. |
SQL_DIAG_ ROW_COUNT |
SQLINTEGER | The number of rows affected by an insert, delete, or update performed by SQLExecute, SQLExecDirect, SQLBulkOperations, or SQLSetPos. It is driver-defined after a cursor specification has been executed. The contents of this field are defined only for statement handles. Calling SQLGetDiagField with a DiagIdentifier of SQL_DIAG_ROW_COUNT on other than a statement handle will return SQL_ERROR. The data in this field is also returned in the RowCountPtr argument of SQLRowCount. The data in this field is reset after every non-diagnostic function call, whereas the row count returned by SQLRowCount remains the same until the statement is set back to the prepared or allocated state. |
The following record fields can be included in the DiagIdentifier argument:
DiagIdentifier | Return type | Returns |
SQL_DIAG_ CLASS_ORIGIN |
SQLCHAR * | A string that indicates the document that defines the class portion of the SQLSTATE value in this record. Its value is “ISO 9075” for all SQLSTATEs defined by X/Open and ISO call-level interface. For ODBC-specific SQLSTATEs (all those whose SQLSTATE class is “IM”), its value is “ODBC 3.0”. |
SQL_DIAG_COLUMN_ NUMBER |
SQLINTEGER | If the SQL_DIAG_ROW_NUMBER field is a valid row number in a rowset or a set of parameters, then this field contains the value that represents the column number in the result set or the parameter number in the set of parameters. Result set column numbers always start at 1; if this status record pertains to a bookmark column, then the field can be zero. Parameter numbers start at 1. It has the value SQL_NO_COLUMN_NUMBER if the status record is not associated with a column number or parameter number. If the driver cannot determine the column number or parameter number that this record is associated with, this field has the value SQL_COLUMN_NUMBER_ UNKNOWN. The contents of this field are defined only for statement handles. |
SQL_DIAG_ CONNECTION_ NAME |
SQLCHAR * | A string that indicates the name of the connection that the diagnostic record relates to. This field is driver-defined. For diagnostic data structures associated with the environment handle and for diagnostics that do not relate to any connection, this field is a zero-length string. |
SQL_DIAG_ MESSAGE_TEXT |
SQLCHAR * | An informational message on the error or warning. This field is formatted as described in the “Diagnostic Messages” section of Chapter 15, “Diagnostics.” There is no maximum length to the diagnostic message text. |
SQL_DIAG_NATIVE | SQLINTEGER | A driver/data source – specific native error code. If there is no native error code, the driver returns 0. |
SQL_DIAG_ ROW_NUMBER |
SQLINTEGER | This field contains the row number in the rowset, or the parameter number in the set of parameters, with which the status record is associated. Row numbers and parameter numbers start with 1. This field has the value SQL_NO_ROW_NUMBER if this status record is not associated with a row number or parameter number. If the driver cannot determine the row number or parameter number that this record is associated with, this field has the value SQL_ROW_NUMBER_UNKNOWN. The contents of this field are defined only for statement handles. |
SQL_DIAG_ SERVER_NAME |
SQLCHAR * | A string that indicates the server name that the diagnostic record relates to. It is the same as the value returned for a call to SQLGetInfo with the SQL_DATA_SOURCE_NAME option. For diagnostic data structures associated with the environment handle and for diagnostics that do not relate to any server, this field is a zero-length string. |
SQL_DIAG_SQLSTATE | SQLCHAR * | A five-character SQLSTATE diagnostic code. For more information, see “SQLSTATEs” in Chapter 15, “Diagnostics.” |
SQL_DIAG_SUBCLASS_ ORIGIN |
SQLCHAR * | A string with the same format and valid values as SQL_DIAG_CLASS_ORIGIN, that identifies the defining portion of the subclass portion of the SQLSTATE code. The ODBC-specific SQLSTATES for which “ODBC 3.0” is returned include the following: 01S00, 01S01, 01S02, 01S06, 01S07, 07S01, 08S01, 21S01, 21S02, 25S01, 25S02, 25S03, 42S01, 42S02, 42S11, 42S12, 42S21, 42S22, HY095, HY097, HY098, HY099, HY100, HY101, HY105, HY107, HY109, HY110, HY111, HYT00, HYT01, IM001, IM002, IM003, IM004, IM005, IM006, IM007, IM008, IM010, IM011, IM012. |
The following table describes the values of SQL_DIAG_DYNAMIC_FUNCTION and SQL_DIAG_DYNAMIC_FUNCTION_CODE that apply to each type of SQL statement executed by a call to SQLExecute or SQLExecDirect. The driver can add driver-defined values to those listed.
SQL statement executed |
Value of SQL_DIAG_ DYNAMIC_FUNCTION |
Value of SQL_DIAG_DYNAMIC_ FUNCTION_CODE |
alter-domain- statement |
“ALTER DOMAIN” | SQL_DIAG_ALTER_DOMAIN |
alter-table- statement |
“ALTER TABLE” | SQL_DIAG_ALTER_TABLE |
assertion- definition |
“CREATE ASSERTION” | SQL_DIAG_CREATE_ ASSERTION |
character-set- definition |
“CREATE CHARACTER SET” | SQL_DIAG_CREATE_ CHARACTER_SET |
collation- definition |
“CREATE COLLATION” | SQL_DIAG_CREATE_ COLLATION |
create-index- statement |
“CREATE INDEX” | SQL_DIAG_CREATE_ INDEX |
create-table- statement |
“CREATE TABLE” | SQL_DIAG_CREATE_ TABLE |
create-view- statement |
“CREATE VIEW” | SQL_DIAG_CREATE_VIEW |
cursor- specification |
“SELECT CURSOR” | SQL_DIAG_SELECT_ CURSOR |
delete- statement- positioned |
“DYNAMIC DELETE CURSOR” | SQL_DIAG_DYNAMIC_ DELETE_CURSOR |
delete- statement- searched |
“DELETE WHERE” | SQL_DIAG_DELETE_ WHERE |
domain- definition |
“CREATE DOMAIN” | SQL_DIAG_CREATE_ DOMAIN |
drop-assertion- statement |
“DROP ASSERTION” | SQL_DIAG_DROP_ ASSERTION |
drop-character- set-stmt |
“DROP CHARACTER SET” | SQL_DIAG_DROP_ CHARACTER_SET |
drop-collation- statement |
“DROP COLLATION” | SQL_DIAG_DROP_ COLLATION |
drop-domain- statement |
“DROP DOMAIN” | SQL_DIAG_DROP_DOMAIN |
drop-index- statement |
“DROP INDEX” | SQL_DIAG_DROP_INDEX |
drop-schema- statement |
“DROP SCHEMA” | SQL_DIAG_DROP_SCHEMA |
drop-table- statement |
“DROP TABLE” | SQL_DIAG_DROP_TABLE |
drop-translation- statement |
“DROP TRANSLATION” | SQL_DIAG_DROP_ TRANSLATION |
drop-view- statement |
“DROP VIEW” | SQL_DIAG_DROP_VIEW |
grant-statement | “GRANT” | SQL_DIAG_GRANT |
insert-statement | “INSERT” | SQL_DIAG_INSERT |
ODBC- procedure- extension |
“CALL” | SQL_DIAG_ CALL |
revoke- statement |
“REVOKE” | SQL_DIAG_REVOKE |
schema- definition |
“CREATE SCHEMA” | SQL_DIAG_CREATE_ SCHEMA |
translation- definition |
“CREATE TRANSLATION” | SQL_DIAG_CREATE_ TRANSLATION |
update- statement- positioned |
“DYNAMIC UPDATE CURSOR” | SQL_DIAG_DYNAMIC_ UPDATE_CURSOR |
update- statement- searched |
“UPDATE WHERE” | SQL_DIAG_UPDATE_ WHERE |
Unknown | empty string | SQL_DIAG_UNKNOWN_ STATEMENT |
Status records are placed in a sequence based upon row number and the type of the diagnostic. The Driver Manager determines the final order in which to return status records that it generates. The driver determines the final order in which to return status records that it generates.
If diagnostic records are posted by both the Driver Manager and the driver, the Driver Manager is responsible for ordering them.
If there are two or more status records, the sequence of the records is determined first by row number. The following rules apply to determining the sequence of diagnostic records by row:
Note The ODBC 3.x Driver Manager does not order status records in the diagnostic queue if SQLSTATE 01S01 (Error in row) is returned by an ODBC 2.x driver, or SQLSTATE 01S01 (Error in row) is returned by an ODBC 3.x driver when SQLExtendedFetch is called or SQLSetPos is called on a cursor that has been positioned with SQLExtendedFetch.
Within each row, or for all those records that do not correspond to a row or for which the row number is unknown, or for all those records with a row number equal to SQL_NO_ROW_NUMBER, the first record listed is determined using a set of sorting rules. After the first record, the order of the other records affecting a row is undefined. An application cannot assume that errors precede warnings after the first record. Applications should scan the entire diagnostic data structure to obtain complete information on an unsuccessful call to a function.
The following rules are followed to determine the first record within a row. The record with the highest rank is the first record. The source of a record (Driver Manager, driver, gateway, and so on) is not considered when ranking records.
Related Functions
For information about | See |
Obtaining multiple fields of a diagnostic data structure | SQLGetDiagRec |