home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 May
/
PCWorld_1999-05_cd.bin
/
software
/
Vyzkuste
/
inprise
/
INTRBASE_55
/
EXAMPLES
/
API
/
DYN5.E
< prev
next >
Wrap
Text File
|
1998-10-18
|
2KB
|
112 lines
/*
* Program type: Embedded Dynamic SQL
*
* Description:
* This program demonstrates the reallocation of SQLDA and
* the 'describe' statement. After a query is examined with
* 'describe', an SQLDA of correct size is reallocated, and some
* information is printed about the query: its type (select,
* non-select), the number of columns, etc.
*/
#include "example.h"
#include <stdlib.h>
#include <string.h>
char *sel_str =
"SELECT department, mngr_no, location, head_dept \
FROM department WHERE head_dept in ('100', '900', '600')";
char Db_name[128];
EXEC SQL
SET DATABASE empdb = "employee.gdb" RUNTIME :Db_name;
int main(ARG(int, argc), ARG(char **, argv))
ARGLIST(int argc)
ARGLIST(char **argv)
{
short num_cols, i;
XSQLDA *sqlda;
if (argc > 1)
strcpy(Db_name, argv[1]);
else
strcpy(Db_name, "employee.gdb");
EXEC SQL
WHENEVER SQLERROR GO TO Error;
EXEC SQL
CONNECT empdb;
EXEC SQL
SET TRANSACTION;
/* Allocate SQLDA of an arbitrary size. */
sqlda = (XSQLDA *) malloc(XSQLDA_LENGTH(4));
sqlda->sqln = 4;
sqlda->sqld = 4;
sqlda->version = 1;
/* Prepare an unknown statement. */
EXEC SQL
PREPARE q INTO SQL DESCRIPTOR sqlda FROM :sel_str;
/* Describe the statement. */
EXEC SQL
DESCRIBE q INTO SQL DESCRIPTOR sqlda;
/* This is a non-select statement, which can now be executed. */
if (sqlda->sqld == 0)
return(0);
/* If this is a select statement, print more information about it. */
else
printf("Query Type: SELECT\n\n");
num_cols = sqlda->sqld;
printf("Number of columns selected: %d\n", num_cols);
/* Reallocate SQLDA if necessary. */
if (sqlda->sqln < sqlda->sqld)
{
free(sqlda);
sqlda = (XSQLDA *) malloc(XSQLDA_LENGTH(num_cols));
sqlda->sqln = num_cols;
sqlda->sqld = num_cols;
/* Re-describe the statement. */
EXEC SQL
DESCRIBE q INTO SQL DESCRIPTOR sqlda;
num_cols = sqlda->sqld;
}
/* List column names, types, and lengths. */
for (i = 0; i < num_cols; i++)
{
printf("\nColumn name: %s\n", sqlda->sqlvar[i].sqlname);
printf("Column type: %d\n", sqlda->sqlvar[i].sqltype);
printf("Column length: %d\n", sqlda->sqlvar[i].sqllen);
}
EXEC SQL
COMMIT;
EXEC SQL
DISCONNECT empdb;
free( sqlda);
return(0);
Error:
isc_print_status(gds__status);
printf("SQLCODE=%d\n", SQLCODE);
return(1);
}