Displaying 1 result from an estimated 1 matches for "sqlabc".
Did you mean:
sqlabs
2004 Nov 23
0
ROracle: fetch return zero rows or empty dataset (a workaround!)
...qlca.sqlerrd[1]. This problem is a result of a
non-matching data definition of the data structure "sqlca" in ORACLE &
POSTGRESQL.
In oracle, sqlca is defined in $ORACLE_HOME/precomp/public/sqlca.h, as:
struct sqlca
{
/* ub1 */ char sqlcaid[8];
/* b4 */ int sqlabc;
/* b4 */ int sqlcode;
struct
{
/* ub2 */ unsigned short sqlerrml;
/* ub1 */ char sqlerrmc[70];
} sqlerrm;
/* ub1 */ char sqlerrp[8];
/* b4 */ int sqlerrd[6];
/* ub1 */ char sqlwarn[8]...