Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: SQLDA and STL

Re: SQLDA and STL

From: James Moe <sma.spam-not_at_rtd.com>
Date: Fri, 12 Nov 1999 05:15:12 GMT
Message-ID: <382BA25F.AE06E1BB@rtd.com>

Alex Vinokur wrote:
>
> Here is the SQLDA (SQL Descriptor Area) structure
> used in dynamic SQL programs in databases.
>
> struct SQLDA
> {
> long N; /* Descriptor size in number of entries */
> char **V; /* Ptr to Arr of addresses of main variables */
> long *L; /* Ptr to Arr of lengths of buffers */
> short *T; /* Ptr to Arr of types of buffers */
> short **I; /* Ptr to Arr of addresses of indicator vars */
> long F; /* Number of variables found by DESCRIBE */
> char **S; /* Ptr to Arr of variable name pointers */
> short *M; /* Ptr to Arr of max lengths of var. names */
> short *C; * Ptr to Arr of current lengths of var. names */
> char **X; /* Ptr to Arr of ind. var. name pointers */
> short *Y; /* Ptr to Arr of max lengths of ind. var. names */
> short *Z; /* Ptr to Arr of cur lengths of ind. var. names */
> };
>
> That is C language structure.
> [ ... ]

    Why ask us? Ask Oracle.

--

sma at rtd dot com
Remove ".spam-not" for email Received on Thu Nov 11 1999 - 23:15:12 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US