Executing the Statement to Read Data from an Array

From InterBase

Go Up to Reading Data from an Array


Once the query statement string is prepared, it can be executed:

isc_dsql_execute(status_vector,
&trans, /* set by previous isc_start_transaction() call */
&stmt, /* set above by isc_dsql_prepare() */
1, /* da_version number */
NULL ); /* NULL since stmt doesn't have input values */

This statement creates a select-list, the rows returned by execution of the
statement.

Advance To: