Standards and
compatibility
Example
$
For more information on the use of the SQLDA structure, see "The SQL
descriptor area (SQLDA)" on page 45 of the book ASA Programming
Interfaces Guide.
♦
SQL/92
Part of the SQL/92 standard. Some clauses are vendor
extensions.
♦
Some clauses supported by Open Client/Open Server.
Sybase
♦
The following example shows how to use the DESCRIBE statement:
sqlda = alloc_sqlda( 3 );
EXEC SQL DESCRIBE OUTPUT
FOR employee_statement
INTO sqlda;
if( sqlda->sqld
actual_size = sqlda->sqld;
free_sqlda( sqlda );
sqlda = alloc_sqlda( actual_size );
EXEC SQL DESCRIBE OUTPUT
FOR employee_statement
INTO sqlda;
}
Chapter 9 SQL Statements
>
sqlda->sqln ) {
503
Need help?
Do you have a question about the Adaptive Server Anywhere and is the answer not in the manual?
Questions and answers