| Server IP : 172.67.216.113 / Your IP : 172.71.28.145 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/2388322/root/opt/td-agent/embedded/include/ |
Upload File : |
/*
* pgsql/src/interfaces/ecpg/include/sqlda-infx-compat.h
*/
#ifndef ECPG_SQLDA_COMPAT_H
#define ECPG_SQLDA_COMPAT_H
struct sqlvar_compat
{
short sqltype; /* variable type */
int sqllen; /* length in bytes */
char *sqldata; /* pointer to data */
short *sqlind; /* pointer to indicator */
char *sqlname; /* variable name */
char *sqlformat; /* reserved for future use */
short sqlitype; /* ind variable type */
short sqlilen; /* ind length in bytes */
char *sqlidata; /* ind data pointer */
int sqlxid; /* extended id type */
char *sqltypename; /* extended type name */
short sqltypelen; /* length of extended type name */
short sqlownerlen; /* length of owner name */
short sqlsourcetype; /* source type for distinct of built-ins */
char *sqlownername; /* owner name */
int sqlsourceid; /* extended id of source type */
/*
* sqlilongdata is new. It supports data that exceeds the 32k limit.
* sqlilen and sqlidata are for backward compatibility and they have
* maximum value of <32K.
*/
char *sqlilongdata; /* for data field beyond 32K */
int sqlflags; /* for internal use only */
void *sqlreserved; /* reserved for future use */
};
struct sqlda_compat
{
short sqld;
struct sqlvar_compat *sqlvar;
char desc_name[19]; /* descriptor name */
short desc_occ; /* size of sqlda structure */
struct sqlda_compat *desc_next; /* pointer to next sqlda struct */
void *reserved; /* reserved for future use */
};
#endif /* ECPG_SQLDA_COMPAT_H */