- 论坛徽章:
- 0
|
关于oracle , SQLDA 的结构中 , BLOB 型是多少呀,
T[i] 的值的问题,
比如说 NUMBER =1, CHAR=96 ,
BLOB 型是多少呀,TIMESTAMP是多什么呀,各位谁知道的 有没有全的,给发一个,多 谢
-------
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 */
}; |
|