Commit 79420840 authored by Hiroshi Inoue's avatar Hiroshi Inoue

1) Support Keyset Driven driver cursors.

2) Supprt ARD precision/scale and SQL_C_NUEMRIC.
3) Minimal implementation of SQLGetDiagField().
4) SQLRowCount() reports the result of SQLSetPos and SQLBulkOperation.
5) int8 -> SQL_NUMERIC for Microsoft Jet.
6) Support isolation level change.
7) ODBC3.0 SQLSTATE code.
8) Append mode log files.
parent 6c6f395a
...@@ -69,6 +69,23 @@ PGAPI_BindParameter( ...@@ -69,6 +69,23 @@ PGAPI_BindParameter(
opts->parameters[ipar].SQLType = fSqlType; opts->parameters[ipar].SQLType = fSqlType;
opts->parameters[ipar].column_size = cbColDef; opts->parameters[ipar].column_size = cbColDef;
opts->parameters[ipar].decimal_digits = ibScale; opts->parameters[ipar].decimal_digits = ibScale;
opts->parameters[ipar].precision = 0;
opts->parameters[ipar].scale = 0;
#if (ODBCVER >= 0x0300)
switch (fCType)
{
case SQL_C_NUMERIC:
if (cbColDef > 0)
opts->parameters[ipar].precision = (UInt2) cbColDef;
if (ibScale > 0)
opts->parameters[ipar].scale = ibScale;
break;
case SQL_C_TYPE_TIMESTAMP:
if (ibScale > 0)
opts->parameters[ipar].precision = ibScale;
break;
}
#endif /* ODBCVER */
/* /*
* If rebinding a parameter that had data-at-exec stuff in it, then * If rebinding a parameter that had data-at-exec stuff in it, then
...@@ -210,6 +227,8 @@ inolog("Column 0 is type %d not of type SQL_C_BOOKMARK", fCType); ...@@ -210,6 +227,8 @@ inolog("Column 0 is type %d not of type SQL_C_BOOKMARK", fCType);
free(opts->bindings[icol].ttlbuf); free(opts->bindings[icol].ttlbuf);
opts->bindings[icol].ttlbuf = NULL; opts->bindings[icol].ttlbuf = NULL;
opts->bindings[icol].ttlbuflen = 0; opts->bindings[icol].ttlbuflen = 0;
opts->bindings[icol].precision = 0;
opts->bindings[icol].scale = 0;
} }
else else
{ {
...@@ -218,6 +237,13 @@ inolog("Column 0 is type %d not of type SQL_C_BOOKMARK", fCType); ...@@ -218,6 +237,13 @@ inolog("Column 0 is type %d not of type SQL_C_BOOKMARK", fCType);
opts->bindings[icol].buffer = rgbValue; opts->bindings[icol].buffer = rgbValue;
opts->bindings[icol].used = pcbValue; opts->bindings[icol].used = pcbValue;
opts->bindings[icol].returntype = fCType; opts->bindings[icol].returntype = fCType;
#if (ODBCVER >= 0x0300)
if (SQL_C_NUMERIC == fCType)
opts->bindings[icol].precision = 32;
else
#endif /* ODBCVER */
opts->bindings[icol].precision = 0;
opts->bindings[icol].scale = 0;
mylog(" bound buffer[%d] = %u\n", icol, opts->bindings[icol].buffer); mylog(" bound buffer[%d] = %u\n", icol, opts->bindings[icol].buffer);
} }
...@@ -460,6 +486,8 @@ reset_a_parameter_binding(APDFields *self, int ipar) ...@@ -460,6 +486,8 @@ reset_a_parameter_binding(APDFields *self, int ipar)
self->parameters[ipar].SQLType = 0; self->parameters[ipar].SQLType = 0;
self->parameters[ipar].column_size = 0; self->parameters[ipar].column_size = 0;
self->parameters[ipar].decimal_digits = 0; self->parameters[ipar].decimal_digits = 0;
self->parameters[ipar].precision = 0;
self->parameters[ipar].scale = 0;
self->parameters[ipar].data_at_exec = FALSE; self->parameters[ipar].data_at_exec = FALSE;
self->parameters[ipar].lobj_oid = 0; self->parameters[ipar].lobj_oid = 0;
} }
......
...@@ -27,6 +27,8 @@ struct BindInfoClass_ ...@@ -27,6 +27,8 @@ struct BindInfoClass_
Int2 returntype; /* kind of conversion to be applied when Int2 returntype; /* kind of conversion to be applied when
* returning (SQL_C_DEFAULT, * returning (SQL_C_DEFAULT,
* SQL_C_CHAR...) */ * SQL_C_CHAR...) */
Int2 precision; /* the precision for numeric or timestamp type */
Int2 scale; /* the scale for numeric type */
}; };
/* /*
...@@ -40,12 +42,14 @@ struct ParameterInfoClass_ ...@@ -40,12 +42,14 @@ struct ParameterInfoClass_
Int2 paramType; Int2 paramType;
Int2 CType; Int2 CType;
Int2 SQLType; Int2 SQLType;
UInt4 column_size;
Int2 decimal_digits; Int2 decimal_digits;
UInt4 column_size;
Oid lobj_oid; Oid lobj_oid;
Int4 *EXEC_used; /* amount of data OR the oid of the large Int4 *EXEC_used; /* amount of data OR the oid of the large
* object */ * object */
char *EXEC_buffer; /* the data or the FD of the large object */ char *EXEC_buffer; /* the data or the FD of the large object */
Int2 precision; /* the precision for numeric or timestamp type */
Int2 scale; /* the scale for numeric type */
char data_at_exec; char data_at_exec;
}; };
......
...@@ -237,7 +237,7 @@ CC_conninfo_init(ConnInfo *conninfo) ...@@ -237,7 +237,7 @@ CC_conninfo_init(ConnInfo *conninfo)
{ {
memset(conninfo, 0, sizeof(ConnInfo)); memset(conninfo, 0, sizeof(ConnInfo));
conninfo->disallow_premature = -1; conninfo->disallow_premature = -1;
conninfo->updatable_cursors = -1; conninfo->allow_keyset = -1;
conninfo->lf_conversion = -1; conninfo->lf_conversion = -1;
conninfo->true_is_minus1 = -1; conninfo->true_is_minus1 = -1;
memcpy(&(conninfo->drivers), &globals, sizeof(globals)); memcpy(&(conninfo->drivers), &globals, sizeof(globals));
...@@ -293,6 +293,7 @@ CC_Constructor() ...@@ -293,6 +293,7 @@ CC_Constructor()
rv->unicode = 0; rv->unicode = 0;
rv->result_uncommitted = 0; rv->result_uncommitted = 0;
rv->schema_support = 0; rv->schema_support = 0;
rv->isolation = SQL_TXN_READ_COMMITTED;
#ifdef MULTIBYTE #ifdef MULTIBYTE
rv->client_encoding = NULL; rv->client_encoding = NULL;
rv->server_encoding = NULL; rv->server_encoding = NULL;
...@@ -996,6 +997,12 @@ another_version_retry: ...@@ -996,6 +997,12 @@ another_version_retry:
} }
#endif /* UNICODE_SUPPORT */ #endif /* UNICODE_SUPPORT */
#endif /* MULTIBYTE */ #endif /* MULTIBYTE */
ci->updatable_cursors = 0;
#ifdef DRIVER_CURSOR_IMPLEMENT
if (!ci->drivers.use_declarefetch &&
PG_VERSION_GE(self, 7.0)) /* Tid scan since 7.0 */
ci->updatable_cursors = ci->allow_keyset;
#endif /* DRIVER_CURSOR_IMPLEMENT */
CC_clear_error(self); /* clear any initial command errors */ CC_clear_error(self); /* clear any initial command errors */
self->status = CONN_CONNECTED; self->status = CONN_CONNECTED;
...@@ -1130,7 +1137,7 @@ void CC_on_commit(ConnectionClass *conn) ...@@ -1130,7 +1137,7 @@ void CC_on_commit(ConnectionClass *conn)
} }
conn->result_uncommitted = 0; conn->result_uncommitted = 0;
} }
void CC_on_abort(ConnectionClass *conn, BOOL set_no_trans) void CC_on_abort(ConnectionClass *conn, UDWORD opt)
{ {
if (CC_is_in_trans(conn)) if (CC_is_in_trans(conn))
{ {
...@@ -1138,9 +1145,11 @@ void CC_on_abort(ConnectionClass *conn, BOOL set_no_trans) ...@@ -1138,9 +1145,11 @@ void CC_on_abort(ConnectionClass *conn, BOOL set_no_trans)
if (conn->result_uncommitted) if (conn->result_uncommitted)
ProcessRollback(conn, TRUE); ProcessRollback(conn, TRUE);
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
if (set_no_trans) if (0 != (opt & NO_TRANS))
CC_set_no_trans(conn); CC_set_no_trans(conn);
} }
if (0 != (opt & CONN_DEAD))
conn->status = CONN_DOWN;
conn->result_uncommitted = 0; conn->result_uncommitted = 0;
} }
...@@ -1162,8 +1171,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1162,8 +1171,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
BOOL clear_result_on_abort = ((flag & CLEAR_RESULT_ON_ABORT) != 0), BOOL clear_result_on_abort = ((flag & CLEAR_RESULT_ON_ABORT) != 0),
create_keyset = ((flag & CREATE_KEYSET) != 0), create_keyset = ((flag & CREATE_KEYSET) != 0),
issue_begin = ((flag & GO_INTO_TRANSACTION) != 0 && !CC_is_in_trans(self)); issue_begin = ((flag & GO_INTO_TRANSACTION) != 0 && !CC_is_in_trans(self));
char swallow, char swallow, *wq, *ptr;
*wq;
int id; int id;
SocketClass *sock = self->sock; SocketClass *sock = self->sock;
int maxlen, int maxlen,
...@@ -1173,8 +1181,8 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1173,8 +1181,8 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
query_completed = FALSE, query_completed = FALSE,
before_64 = PG_VERSION_LT(self, 6.4), before_64 = PG_VERSION_LT(self, 6.4),
aborted = FALSE, aborted = FALSE,
used_passed_result_object = FALSE, used_passed_result_object = FALSE;
set_no_trans; UDWORD abort_opt;
/* ERROR_MSG_LENGTH is suffcient */ /* ERROR_MSG_LENGTH is suffcient */
static char msgbuffer[ERROR_MSG_LENGTH + 1]; static char msgbuffer[ERROR_MSG_LENGTH + 1];
...@@ -1201,7 +1209,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1201,7 +1209,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
{ {
self->errornumber = CONNECTION_COULD_NOT_SEND; self->errornumber = CONNECTION_COULD_NOT_SEND;
self->errormsg = "Could not send Query to backend"; self->errormsg = "Could not send Query to backend";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
return NULL; return NULL;
} }
...@@ -1210,7 +1218,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1210,7 +1218,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
{ {
self->errornumber = CONNECTION_COULD_NOT_SEND; self->errornumber = CONNECTION_COULD_NOT_SEND;
self->errormsg = "Could not send Query to backend"; self->errormsg = "Could not send Query to backend";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
return NULL; return NULL;
} }
...@@ -1223,7 +1231,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1223,7 +1231,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
{ {
self->errornumber = CONNECTION_COULD_NOT_SEND; self->errornumber = CONNECTION_COULD_NOT_SEND;
self->errormsg = "Could not send Query to backend"; self->errormsg = "Could not send Query to backend";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
return NULL; return NULL;
} }
...@@ -1260,7 +1268,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1260,7 +1268,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
self->errormsg = "No response from the backend"; self->errormsg = "No response from the backend";
mylog("send_query: 'id' - %s\n", self->errormsg); mylog("send_query: 'id' - %s\n", self->errormsg);
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
ReadyToReturn = TRUE; ReadyToReturn = TRUE;
retres = NULL; retres = NULL;
break; break;
...@@ -1284,7 +1292,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1284,7 +1292,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
self->errornumber = CONNECTION_NO_RESPONSE; self->errornumber = CONNECTION_NO_RESPONSE;
self->errormsg = "No response from backend while receiving a portal query command"; self->errormsg = "No response from backend while receiving a portal query command";
mylog("send_query: 'C' - %s\n", self->errormsg); mylog("send_query: 'C' - %s\n", self->errormsg);
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
ReadyToReturn = TRUE; ReadyToReturn = TRUE;
retres = NULL; retres = NULL;
} }
...@@ -1312,11 +1320,20 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1312,11 +1320,20 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
else if (strnicmp(cmdbuffer, "COMMIT", 6) == 0) else if (strnicmp(cmdbuffer, "COMMIT", 6) == 0)
CC_on_commit(self); CC_on_commit(self);
else if (strnicmp(cmdbuffer, "ROLLBACK", 8) == 0) else if (strnicmp(cmdbuffer, "ROLLBACK", 8) == 0)
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS);
else if (strnicmp(cmdbuffer, "END", 3) == 0) else if (strnicmp(cmdbuffer, "END", 3) == 0)
CC_on_commit(self); CC_on_commit(self);
else if (strnicmp(cmdbuffer, "ABORT", 5) == 0) else if (strnicmp(cmdbuffer, "ABORT", 5) == 0)
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS);
else
{
trim(cmdbuffer); /* get rid of trailing space */
ptr = strrchr(cmdbuffer, ' ');
if (ptr)
res->recent_processed_row_count = atoi(ptr + 1);
else
res->recent_processed_row_count = -1;
}
if (QR_command_successful(res)) if (QR_command_successful(res))
QR_set_status(res, PGRES_COMMAND_OK); QR_set_status(res, PGRES_COMMAND_OK);
...@@ -1400,15 +1417,15 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1400,15 +1417,15 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
qlog("ERROR from backend during send_query: '%s'\n", msgbuffer); qlog("ERROR from backend during send_query: '%s'\n", msgbuffer);
/* We should report that an error occured. Zoltan */ /* We should report that an error occured. Zoltan */
set_no_trans = FALSE; abort_opt = 0;
if (!strncmp(msgbuffer, "FATAL", 5)) if (!strncmp(msgbuffer, "FATAL", 5))
{ {
self->errornumber = CONNECTION_SERVER_REPORTED_ERROR; self->errornumber = CONNECTION_SERVER_REPORTED_ERROR;
set_no_trans = TRUE; abort_opt = NO_TRANS | CONN_DEAD;
} }
else else
self->errornumber = CONNECTION_SERVER_REPORTED_WARNING; self->errornumber = CONNECTION_SERVER_REPORTED_WARNING;
CC_on_abort(self, set_no_trans); CC_on_abort(self, abort_opt);
QR_set_status(res, PGRES_FATAL_ERROR); QR_set_status(res, PGRES_FATAL_ERROR);
QR_set_message(res, msgbuffer); QR_set_message(res, msgbuffer);
QR_set_aborted(res, TRUE); QR_set_aborted(res, TRUE);
...@@ -1497,7 +1514,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag) ...@@ -1497,7 +1514,7 @@ CC_send_query(ConnectionClass *self, char *query, QueryInfo *qi, UDWORD flag)
default: default:
self->errornumber = CONNECTION_BACKEND_CRAZY; self->errornumber = CONNECTION_BACKEND_CRAZY;
self->errormsg = "Unexpected protocol character from backend (send_query)"; self->errormsg = "Unexpected protocol character from backend (send_query)";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
mylog("send_query: error - %s\n", self->errormsg); mylog("send_query: error - %s\n", self->errormsg);
ReadyToReturn = TRUE; ReadyToReturn = TRUE;
...@@ -1585,7 +1602,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1585,7 +1602,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
{ {
self->errornumber = CONNECTION_COULD_NOT_SEND; self->errornumber = CONNECTION_COULD_NOT_SEND;
self->errormsg = "Could not send function to backend"; self->errormsg = "Could not send function to backend";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
return FALSE; return FALSE;
} }
...@@ -1594,7 +1611,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1594,7 +1611,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
{ {
self->errornumber = CONNECTION_COULD_NOT_SEND; self->errornumber = CONNECTION_COULD_NOT_SEND;
self->errormsg = "Could not send function to backend"; self->errormsg = "Could not send function to backend";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
return FALSE; return FALSE;
} }
...@@ -1643,7 +1660,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1643,7 +1660,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
case 'E': case 'E':
SOCK_get_string(sock, msgbuffer, ERROR_MSG_LENGTH); SOCK_get_string(sock, msgbuffer, ERROR_MSG_LENGTH);
self->errormsg = msgbuffer; self->errormsg = msgbuffer;
CC_on_abort(self, FALSE); CC_on_abort(self, 0);
mylog("send_function(V): 'E' - %s\n", self->errormsg); mylog("send_function(V): 'E' - %s\n", self->errormsg);
qlog("ERROR from backend during send_function: '%s'\n", self->errormsg); qlog("ERROR from backend during send_function: '%s'\n", self->errormsg);
...@@ -1656,7 +1673,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1656,7 +1673,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
default: default:
self->errornumber = CONNECTION_BACKEND_CRAZY; self->errornumber = CONNECTION_BACKEND_CRAZY;
self->errormsg = "Unexpected protocol character from backend (send_function, args)"; self->errormsg = "Unexpected protocol character from backend (send_function, args)";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
mylog("send_function: error - %s\n", self->errormsg); mylog("send_function: error - %s\n", self->errormsg);
return FALSE; return FALSE;
...@@ -1690,7 +1707,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1690,7 +1707,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
case 'E': case 'E':
SOCK_get_string(sock, msgbuffer, ERROR_MSG_LENGTH); SOCK_get_string(sock, msgbuffer, ERROR_MSG_LENGTH);
self->errormsg = msgbuffer; self->errormsg = msgbuffer;
CC_on_abort(self, FALSE); CC_on_abort(self, 0);
mylog("send_function(G): 'E' - %s\n", self->errormsg); mylog("send_function(G): 'E' - %s\n", self->errormsg);
qlog("ERROR from backend during send_function: '%s'\n", self->errormsg); qlog("ERROR from backend during send_function: '%s'\n", self->errormsg);
...@@ -1711,7 +1728,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_ ...@@ -1711,7 +1728,7 @@ CC_send_function(ConnectionClass *self, int fnid, void *result_buf, int *actual_
default: default:
self->errornumber = CONNECTION_BACKEND_CRAZY; self->errornumber = CONNECTION_BACKEND_CRAZY;
self->errormsg = "Unexpected protocol character from backend (send_function, result)"; self->errormsg = "Unexpected protocol character from backend (send_function, result)";
CC_on_abort(self, TRUE); CC_on_abort(self, NO_TRANS | CONN_DEAD);
mylog("send_function: error - %s\n", self->errormsg); mylog("send_function: error - %s\n", self->errormsg);
return FALSE; return FALSE;
......
...@@ -166,6 +166,7 @@ typedef struct ...@@ -166,6 +166,7 @@ typedef struct
char translation_option[SMALL_REGISTRY_LEN]; char translation_option[SMALL_REGISTRY_LEN];
char focus_password; char focus_password;
char disallow_premature; char disallow_premature;
char allow_keyset;
char updatable_cursors; char updatable_cursors;
char lf_conversion; char lf_conversion;
char true_is_minus1; char true_is_minus1;
...@@ -290,12 +291,13 @@ struct ConnectionClass_ ...@@ -290,12 +291,13 @@ struct ConnectionClass_
char result_uncommitted; char result_uncommitted;
char schema_support; char schema_support;
#ifdef MULTIBYTE #ifdef MULTIBYTE
char *client_encoding; char *client_encoding;
char *server_encoding; char *server_encoding;
#endif /* MULTIBYTE */ #endif /* MULTIBYTE */
int ccsc; int ccsc;
int be_pid; /* pid returned by backend */ int be_pid; /* pid returned by backend */
int be_key; /* auth code needed to send cancel */ int be_key; /* auth code needed to send cancel */
UInt4 isolation;
}; };
...@@ -339,11 +341,15 @@ void CC_log_error(const char *func, const char *desc, const ConnectionClass *se ...@@ -339,11 +341,15 @@ void CC_log_error(const char *func, const char *desc, const ConnectionClass *se
int CC_get_max_query_len(const ConnectionClass *self); int CC_get_max_query_len(const ConnectionClass *self);
int CC_send_cancel_request(const ConnectionClass *conn); int CC_send_cancel_request(const ConnectionClass *conn);
void CC_on_commit(ConnectionClass *conn); void CC_on_commit(ConnectionClass *conn);
void CC_on_abort(ConnectionClass *conn, BOOL set_no_trans); void CC_on_abort(ConnectionClass *conn, UDWORD opt);
void ProcessRollback(ConnectionClass *conn, BOOL undo); void ProcessRollback(ConnectionClass *conn, BOOL undo);
/* CC_send_query_options */ /* CC_send_query options */
#define CLEAR_RESULT_ON_ABORT 1L #define CLEAR_RESULT_ON_ABORT 1L
#define CREATE_KEYSET (1L << 1) /* create keyset for updatable curosrs */ #define CREATE_KEYSET (1L << 1) /* create keyset for updatable curosrs */
#define GO_INTO_TRANSACTION (1L << 2) /* issue begin in advance */ #define GO_INTO_TRANSACTION (1L << 2) /* issue begin in advance */
#endif /* CC_on_abort options */
#define NO_TRANS 1L
#define CONN_DEAD (1L << 1) /* connection is no longer valid */
#endif /* __CONNECTION_H__ */
...@@ -371,7 +371,7 @@ copy_and_convert_field(StatementClass *stmt, Int4 field_type, void *value, Int2 ...@@ -371,7 +371,7 @@ copy_and_convert_field(StatementClass *stmt, Int4 field_type, void *value, Int2
pbic = &opts->bindings[stmt->current_col]; pbic = &opts->bindings[stmt->current_col];
if (pbic->data_left == -2) if (pbic->data_left == -2)
pbic->data_left = (cbValueMax > 0) ? 0 : -1; /* This seems to be * pbic->data_left = (cbValueMax > 0) ? 0 : -1; /* This seems to be *
* needed for ADO ? */ * needed by ADO ? */
if (pbic->data_left == 0) if (pbic->data_left == 0)
{ {
if (pbic->ttlbuf != NULL) if (pbic->ttlbuf != NULL)
...@@ -984,6 +984,90 @@ inolog("2stime fr=%d\n", st.fr); ...@@ -984,6 +984,90 @@ inolog("2stime fr=%d\n", st.fr);
#endif /* HAVE_LOCALE_H */ #endif /* HAVE_LOCALE_H */
break; break;
#if (ODBCVER >= 0x0300)
case SQL_C_NUMERIC:
#ifdef HAVE_LOCALE_H
/* strcpy(saved_locale, setlocale(LC_ALL, NULL));
setlocale(LC_ALL, "C"); not needed currently */
#endif /* HAVE_LOCALE_H */
{
SQL_NUMERIC_STRUCT *ns;
int i, nlen, bit, hval, tv, dig, sta, olen;
char calv[SQL_MAX_NUMERIC_LEN * 3], *wv;
BOOL dot_exist;
len = sizeof(SQL_NUMERIC_STRUCT);
if (bind_size > 0)
ns = (SQL_NUMERIC_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
else
ns = (SQL_NUMERIC_STRUCT *) rgbValue + bind_row;
for (wv = neut_str; *wv && isspace(*wv); wv++)
;
ns->sign = 1;
if (*wv == '-')
{
ns->sign = 0;
wv++;
}
else if (*wv == '+')
wv++;
while (*wv == '0') wv++;
ns->precision = 0;
ns->scale = 0;
for (nlen = 0, dot_exist = FALSE;; wv++)
{
if (*wv == '.')
{
if (dot_exist)
break;
dot_exist = TRUE;
}
else if (!isdigit(*wv))
break;
else
{
if (dot_exist)
ns->scale++;
else
ns->precision++;
calv[nlen++] = *wv;
}
}
memset(ns->val, 0, sizeof(ns->val));
for (hval = 0, bit = 1L, sta = 0, olen = 0; sta < nlen;)
{
for (dig = 0, i = sta; i < nlen; i++)
{
tv = dig * 10 + calv[i] - '0';
dig = tv % 2;
calv[i] = tv / 2 + '0';
if (i == sta && tv < 2)
sta++;
}
if (dig > 0)
hval |= bit;
bit <<= 1;
if (bit >= (1L << 8))
{
ns->val[olen++] = hval;
hval = 0;
bit = 1L;
if (olen >= SQL_MAX_NUMERIC_LEN - 1)
{
ns->scale = sta - ns->precision;
break;
}
}
}
if (hval && olen < SQL_MAX_NUMERIC_LEN - 1)
ns->val[olen++] = hval;
}
#ifdef HAVE_LOCALE_H
/* setlocale(LC_ALL, saved_locale); */
#endif /* HAVE_LOCALE_H */
break;
#endif /* ODBCVER */
case SQL_C_SSHORT: case SQL_C_SSHORT:
case SQL_C_SHORT: case SQL_C_SHORT:
len = 2; len = 2;
...@@ -1179,6 +1263,8 @@ QP_initialize(QueryParse *q, const StatementClass *stmt) ...@@ -1179,6 +1263,8 @@ QP_initialize(QueryParse *q, const StatementClass *stmt)
#define FLGB_PRE_EXECUTING 1L #define FLGB_PRE_EXECUTING 1L
#define FLGB_INACCURATE_RESULT (1L << 1) #define FLGB_INACCURATE_RESULT (1L << 1)
#define FLGB_CREATE_KEYSET (1L << 2)
#define FLGB_KEYSET_DRIVEN (1L << 3)
typedef struct _QueryBuild { typedef struct _QueryBuild {
char *query_statement; char *query_statement;
UInt4 str_size_limit; UInt4 str_size_limit;
...@@ -1589,10 +1675,16 @@ copy_statement_with_parameters(StatementClass *stmt) ...@@ -1589,10 +1675,16 @@ copy_statement_with_parameters(StatementClass *stmt)
{ {
if (stmt->parse_status == STMT_PARSE_NONE) if (stmt->parse_status == STMT_PARSE_NONE)
parse_statement(stmt); parse_statement(stmt);
/*if (stmt->parse_status != STMT_PARSE_COMPLETE) if (stmt->parse_status == STMT_PARSE_FATAL)
{
stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY; stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
else*/ if (!stmt->updatable) return SQL_ERROR;
}
else if (!stmt->updatable)
{
stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY; stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
stmt->options.cursor_type = SQL_CURSOR_STATIC;
}
else else
{ {
qp->from_pos = stmt->from_pos; qp->from_pos = stmt->from_pos;
...@@ -1602,7 +1694,7 @@ copy_statement_with_parameters(StatementClass *stmt) ...@@ -1602,7 +1694,7 @@ copy_statement_with_parameters(StatementClass *stmt)
#else #else
stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY; stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
if (stmt->options.cursor_type == SQL_CURSOR_KEYSET_DRIVEN) if (stmt->options.cursor_type == SQL_CURSOR_KEYSET_DRIVEN)
stmt->options.cursor_type = SQL_CURSOR_FORWARD_ONLY; stmt->options.cursor_type = SQL_CURSOR_STATIC;
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
/* If the application hasn't set a cursor name, then generate one */ /* If the application hasn't set a cursor name, then generate one */
...@@ -1641,6 +1733,12 @@ copy_statement_with_parameters(StatementClass *stmt) ...@@ -1641,6 +1733,12 @@ copy_statement_with_parameters(StatementClass *stmt)
qp->flags |= FLGP_CURSOR_CHECK_OK; qp->flags |= FLGP_CURSOR_CHECK_OK;
qp->declare_pos = qb->npos; qp->declare_pos = qb->npos;
} }
else if (SQL_CONCUR_READ_ONLY != stmt->options.scroll_concurrency)
{
qb->flags |= FLGB_CREATE_KEYSET;
if (SQL_CURSOR_KEYSET_DRIVEN == stmt->options.cursor_type)
qb->flags |= FLGB_KEYSET_DRIVEN;
}
} }
for (qp->opos = 0; qp->opos < qp->stmt_len; qp->opos++) for (qp->opos = 0; qp->opos < qp->stmt_len; qp->opos++)
...@@ -1693,13 +1791,29 @@ copy_statement_with_parameters(StatementClass *stmt) ...@@ -1693,13 +1791,29 @@ copy_statement_with_parameters(StatementClass *stmt)
UInt4 npos = qb->load_stmt_len; UInt4 npos = qb->load_stmt_len;
if (0 == npos) if (0 == npos)
{
npos = qb->npos; npos = qb->npos;
for (; npos > 0; npos--)
{
if (isspace(new_statement[npos - 1]))
continue;
if (';' != new_statement[npos - 1])
break;
}
if (0 != (qb->flags & FLGB_KEYSET_DRIVEN))
{
qb->npos = npos;
/* ----------
* 1st query is for field information
* 2nd query is keyset gathering
*/
CVT_APPEND_STR(qb, " where ctid = '(,)';select ctid, oid from ");
CVT_APPEND_DATA(qb, qp->statement + qp->from_pos + 5, npos - qp->from_pos - 5);
}
}
stmt->load_statement = malloc(npos + 1); stmt->load_statement = malloc(npos + 1);
memcpy(stmt->load_statement, new_statement, npos); memcpy(stmt->load_statement, qb->query_statement, npos);
if (stmt->load_statement[npos - 1] == ';') stmt->load_statement[npos] = '\0';
stmt->load_statement[npos - 1] = '\0';
else
stmt->load_statement[npos] = '\0';
} }
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
if (prepare_dummy_cursor && SC_is_pre_executable(stmt)) if (prepare_dummy_cursor && SC_is_pre_executable(stmt))
...@@ -1732,7 +1846,14 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb) ...@@ -1732,7 +1846,14 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb)
CVT_APPEND_STR(qb, ", CTID, OID "); CVT_APPEND_STR(qb, ", CTID, OID ");
} }
else if (qp->where_pos == (Int4) qp->opos) else if (qp->where_pos == (Int4) qp->opos)
{
qb->load_stmt_len = qb->npos; qb->load_stmt_len = qb->npos;
if (0 != (qb->flags & FLGB_KEYSET_DRIVEN))
{
CVT_APPEND_STR(qb, "where ctid = '(,)';select CTID, OID from ");
CVT_APPEND_DATA(qb, qp->statement + qp->from_pos + 5, qp->where_pos - qp->from_pos - 5);
}
}
#ifdef MULTIBYTE #ifdef MULTIBYTE
oldchar = encoded_byte_check(&qp->encstr, qp->opos); oldchar = encoded_byte_check(&qp->encstr, qp->opos);
if (ENCODE_STATUS(qp->encstr) != 0) if (ENCODE_STATUS(qp->encstr) != 0)
...@@ -1836,6 +1957,7 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb) ...@@ -1836,6 +1957,7 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb)
{ {
qp->flags |= FLGP_SELECT_INTO; qp->flags |= FLGP_SELECT_INTO;
qp->flags &= ~FLGP_CURSOR_CHECK_OK; qp->flags &= ~FLGP_CURSOR_CHECK_OK;
qb->flags &= ~FLGB_KEYSET_DRIVEN;
qp->statement_type = STMT_TYPE_CREATE; qp->statement_type = STMT_TYPE_CREATE;
memmove(qb->query_statement, qb->query_statement + qp->declare_pos, qb->npos - qp->declare_pos); memmove(qb->query_statement, qb->query_statement + qp->declare_pos, qb->npos - qp->declare_pos);
qb->npos -= qp->declare_pos; qb->npos -= qp->declare_pos;
...@@ -1887,6 +2009,130 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb) ...@@ -1887,6 +2009,130 @@ inner_process_tokens(QueryParse *qp, QueryBuild *qb)
return SQL_SUCCESS; return SQL_SUCCESS;
} }
#if (ODBCVER >= 0x0300)
static BOOL
ResolveNumericParam(const SQL_NUMERIC_STRUCT *ns, char *chrform)
{
static int prec[] = {1, 3, 5, 8, 10, 13, 15, 17, 20, 22, 25, 29, 32, 34, 37, 39};
Int4 i, j, k, ival, vlen, len, newlen;
unsigned char calv[40];
const unsigned char *val = (const unsigned char *) ns->val;
BOOL next_figure;
if (0 == ns->precision)
{
strcpy(chrform, "0");
return TRUE;
}
else if (ns->precision < prec[sizeof(Int4)])
{
for (i = 0, ival = 0; i < sizeof(Int4) && prec[i] <= ns->precision; i++)
{
ival += (val[i] << (8 * i)); /* ns->val is little endian */
}
if (0 == ns->scale)
{
if (0 == ns->sign)
ival *= -1;
sprintf(chrform, "%d", ival);
}
else if (ns->scale > 0)
{
Int4 i, div, o1val, o2val;
for (i = 0, div = 1; i < ns->scale; i++)
div *= 10;
o1val = ival / div;
o2val = ival % div;
if (0 == ns->sign)
o1val *= -1;
sprintf(chrform, "%d.%0.*d", o1val, ns->scale, o2val);
}
return TRUE;
}
for (i = 0; i < SQL_MAX_NUMERIC_LEN && prec[i] <= ns->precision; i++)
;
vlen = i;
len = 0;
memset(calv, 0, sizeof(calv));
for (i = vlen - 1; i >= 0; i--)
{
for (j = len - 1; j >= 0; j--)
{
if (!calv[j])
continue;
ival = (((Int4)calv[j]) << 8);
calv[j] = (ival % 10);
ival /= 10;
calv[j + 1] += (ival % 10);
ival /= 10;
calv[j + 2] += (ival % 10);
ival /= 10;
calv[j + 3] += ival;
for (k = j;; k++)
{
next_figure = FALSE;
if (calv[k] > 0)
{
if (k >= len)
len = k + 1;
while (calv[k] > 9)
{
calv[k + 1]++;
calv[k] -= 10;
next_figure = TRUE;
}
}
if (k >= j + 3 && !next_figure)
break;
}
}
ival = val[i];
if (!ival)
continue;
calv[0] += (ival % 10);
ival /= 10;
calv[1] += (ival % 10);
ival /= 10;
calv[2] += ival;
for (j = 0;; j++)
{
next_figure = FALSE;
if (calv[j] > 0)
{
if (j >= len)
len = j + 1;
while (calv[j] > 9)
{
calv[j + 1]++;
calv[j] -= 10;
next_figure = TRUE;
}
}
if (j >= 2 && !next_figure)
break;
}
}
newlen = 0;
if (0 == ns->sign)
chrform[newlen++] = '-';
for (i = len - 1; i >= ns->scale; i--)
chrform[newlen++] = calv[i] + '0';
if (ns->scale > 0)
{
chrform[newlen++] = '.';
for (; i >= 0; i--)
chrform[newlen++] = calv[i] + '0';
}
chrform[newlen] = '\0';
return TRUE;
}
#endif /* ODBCVER */
/*
*
*/
static int static int
ResolveOneParam(QueryBuild *qb) ResolveOneParam(QueryBuild *qb)
{ {
...@@ -2138,6 +2384,11 @@ ResolveOneParam(QueryBuild *qb) ...@@ -2138,6 +2384,11 @@ ResolveOneParam(QueryBuild *qb)
break; break;
} }
#if (ODBCVER >= 0x0300)
case SQL_C_NUMERIC:
if (ResolveNumericParam((SQL_NUMERIC_STRUCT *) buffer, param_string))
break;
#endif
default: default:
/* error */ /* error */
qb->errormsg = "Unrecognized C_parameter type in copy_statement_with_parameters"; qb->errormsg = "Unrecognized C_parameter type in copy_statement_with_parameters";
...@@ -2336,16 +2587,16 @@ ResolveOneParam(QueryBuild *qb) ...@@ -2336,16 +2587,16 @@ ResolveOneParam(QueryBuild *qb)
if (buf) if (buf)
{ {
cbuf[0] = '\''; cbuf[0] = '\'';
my_strcpy(cbuf + 1, sizeof(cbuf) - 12, buf, used); /* 12 = 1('\'') + my_strcpy(cbuf + 1, sizeof(cbuf) - 3, buf, used); /* 3 = 1('\'') +
* strlen("'::numeric") * strlen("'")
* + 1('\0') */ * + 1('\0') */
strcat(cbuf, "'::numeric"); strcat(cbuf, "'");
} }
else else
sprintf(cbuf, "'%s'::numeric", param_string); sprintf(cbuf, "'%s'", param_string);
CVT_APPEND_STR(qb, cbuf); CVT_APPEND_STR(qb, cbuf);
break; break;
default: /* a numeric type or SQL_BIT */ default: /* a numeric type or SQL_BIT */
if (param_sqltype == SQL_BIT) if (param_sqltype == SQL_BIT)
CVT_APPEND_CHAR(qb, '\''); /* Open Quote */ CVT_APPEND_CHAR(qb, '\''); /* Open Quote */
...@@ -2938,7 +3189,7 @@ conv_from_octal(const unsigned char *s) ...@@ -2938,7 +3189,7 @@ conv_from_octal(const unsigned char *s)
y = 0; y = 0;
for (i = 1; i <= 3; i++) for (i = 1; i <= 3; i++)
y += (s[i] - '0') << (3 * (3 - i)); y += (s[i] - '0') << (3 * (3 - i));
return y; return y;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* *
* Comments: See "notice.txt" for copyright and license information. * Comments: See "notice.txt" for copyright and license information.
* *
* $Id: descriptor.h,v 1.4 2002/04/10 08:18:54 inoue Exp $ * $Id: descriptor.h,v 1.5 2002/05/22 05:51:03 inoue Exp $
* *
*/ */
...@@ -20,6 +20,7 @@ typedef struct ...@@ -20,6 +20,7 @@ typedef struct
char schema[MAX_SCHEMA_LEN + 1]; char schema[MAX_SCHEMA_LEN + 1];
char name[MAX_TABLE_LEN + 1]; char name[MAX_TABLE_LEN + 1];
char alias[MAX_TABLE_LEN + 1]; char alias[MAX_TABLE_LEN + 1];
char updatable;
} TABLE_INFO; } TABLE_INFO;
typedef struct typedef struct
...@@ -41,6 +42,8 @@ typedef struct ...@@ -41,6 +42,8 @@ typedef struct
char name[MAX_COLUMN_LEN + 1]; char name[MAX_COLUMN_LEN + 1];
char alias[MAX_COLUMN_LEN + 1]; char alias[MAX_COLUMN_LEN + 1];
} FIELD_INFO; } FIELD_INFO;
Int4 FI_precision(const FIELD_INFO *);
Int4 FI_scale(const FIELD_INFO *);
struct ARDFields_ struct ARDFields_
{ {
......
...@@ -340,7 +340,7 @@ ds_optionsProc(HWND hdlg, ...@@ -340,7 +340,7 @@ ds_optionsProc(HWND hdlg,
CheckDlgButton(hdlg, DS_DISALLOWPREMATURE, ci->disallow_premature); CheckDlgButton(hdlg, DS_DISALLOWPREMATURE, ci->disallow_premature);
CheckDlgButton(hdlg, DS_LFCONVERSION, ci->lf_conversion); CheckDlgButton(hdlg, DS_LFCONVERSION, ci->lf_conversion);
CheckDlgButton(hdlg, DS_TRUEISMINUS1, ci->true_is_minus1); CheckDlgButton(hdlg, DS_TRUEISMINUS1, ci->true_is_minus1);
CheckDlgButton(hdlg, DS_UPDATABLECURSORS, ci->updatable_cursors); CheckDlgButton(hdlg, DS_UPDATABLECURSORS, ci->allow_keyset);
#ifndef DRIVER_CURSOR_IMPLEMENT #ifndef DRIVER_CURSOR_IMPLEMENT
EnableWindow(GetDlgItem(hdlg, DS_UPDATABLECURSORS), FALSE); EnableWindow(GetDlgItem(hdlg, DS_UPDATABLECURSORS), FALSE);
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
...@@ -382,7 +382,7 @@ ds_optionsProc(HWND hdlg, ...@@ -382,7 +382,7 @@ ds_optionsProc(HWND hdlg,
ci->lf_conversion = IsDlgButtonChecked(hdlg, DS_LFCONVERSION); ci->lf_conversion = IsDlgButtonChecked(hdlg, DS_LFCONVERSION);
ci->true_is_minus1 = IsDlgButtonChecked(hdlg, DS_TRUEISMINUS1); ci->true_is_minus1 = IsDlgButtonChecked(hdlg, DS_TRUEISMINUS1);
#ifdef DRIVER_CURSOR_IMPLEMENT #ifdef DRIVER_CURSOR_IMPLEMENT
ci->updatable_cursors = IsDlgButtonChecked(hdlg, DS_UPDATABLECURSORS); ci->allow_keyset = IsDlgButtonChecked(hdlg, DS_UPDATABLECURSORS);
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
/* OID Options */ /* OID Options */
...@@ -590,7 +590,7 @@ makeConnectString(char *connect_string, const ConnInfo *ci, UWORD len) ...@@ -590,7 +590,7 @@ makeConnectString(char *connect_string, const ConnInfo *ci, UWORD len)
INI_LFCONVERSION, INI_LFCONVERSION,
ci->lf_conversion, ci->lf_conversion,
INI_UPDATABLECURSORS, INI_UPDATABLECURSORS,
ci->updatable_cursors, ci->allow_keyset,
INI_DISALLOWPREMATURE, INI_DISALLOWPREMATURE,
ci->disallow_premature, ci->disallow_premature,
INI_TRUEISMINUS1, INI_TRUEISMINUS1,
...@@ -601,7 +601,7 @@ makeConnectString(char *connect_string, const ConnInfo *ci, UWORD len) ...@@ -601,7 +601,7 @@ makeConnectString(char *connect_string, const ConnInfo *ci, UWORD len)
unsigned long flag = 0; unsigned long flag = 0;
if (ci->disallow_premature) if (ci->disallow_premature)
flag |= BIT_DISALLOWPREMATURE; flag |= BIT_DISALLOWPREMATURE;
if (ci->updatable_cursors) if (ci->allow_keyset)
flag |= BIT_UPDATABLECURSORS; flag |= BIT_UPDATABLECURSORS;
if (ci->lf_conversion) if (ci->lf_conversion)
flag |= BIT_LFCONVERSION; flag |= BIT_LFCONVERSION;
...@@ -686,7 +686,7 @@ unfoldCXAttribute(ConnInfo *ci, const char *value) ...@@ -686,7 +686,7 @@ unfoldCXAttribute(ConnInfo *ci, const char *value)
sscanf(value + 2, "%lx", &flag); sscanf(value + 2, "%lx", &flag);
} }
ci->disallow_premature = (char)((flag & BIT_DISALLOWPREMATURE) != 0); ci->disallow_premature = (char)((flag & BIT_DISALLOWPREMATURE) != 0);
ci->updatable_cursors = (char)((flag & BIT_UPDATABLECURSORS) != 0); ci->allow_keyset = (char)((flag & BIT_UPDATABLECURSORS) != 0);
ci->lf_conversion = (char)((flag & BIT_LFCONVERSION) != 0); ci->lf_conversion = (char)((flag & BIT_LFCONVERSION) != 0);
if (count < 4) if (count < 4)
return; return;
...@@ -770,7 +770,7 @@ copyAttributes(ConnInfo *ci, const char *attribute, const char *value) ...@@ -770,7 +770,7 @@ copyAttributes(ConnInfo *ci, const char *attribute, const char *value)
else if (stricmp(attribute, INI_DISALLOWPREMATURE) == 0 || stricmp(attribute, "C3") == 0) else if (stricmp(attribute, INI_DISALLOWPREMATURE) == 0 || stricmp(attribute, "C3") == 0)
ci->disallow_premature = atoi(value); ci->disallow_premature = atoi(value);
else if (stricmp(attribute, INI_UPDATABLECURSORS) == 0 || stricmp(attribute, "C4") == 0) else if (stricmp(attribute, INI_UPDATABLECURSORS) == 0 || stricmp(attribute, "C4") == 0)
ci->updatable_cursors = atoi(value); ci->allow_keyset = atoi(value);
else if (stricmp(attribute, INI_LFCONVERSION) == 0) else if (stricmp(attribute, INI_LFCONVERSION) == 0)
ci->lf_conversion = atoi(value); ci->lf_conversion = atoi(value);
else if (stricmp(attribute, INI_TRUEISMINUS1) == 0) else if (stricmp(attribute, INI_TRUEISMINUS1) == 0)
...@@ -870,8 +870,8 @@ getDSNdefaults(ConnInfo *ci) ...@@ -870,8 +870,8 @@ getDSNdefaults(ConnInfo *ci)
if (ci->disallow_premature < 0) if (ci->disallow_premature < 0)
ci->disallow_premature = DEFAULT_DISALLOWPREMATURE; ci->disallow_premature = DEFAULT_DISALLOWPREMATURE;
if (ci->updatable_cursors < 0) if (ci->allow_keyset < 0)
ci->updatable_cursors = DEFAULT_UPDATABLECURSORS; ci->allow_keyset = DEFAULT_UPDATABLECURSORS;
if (ci->lf_conversion < 0) if (ci->lf_conversion < 0)
ci->lf_conversion = DEFAULT_LFCONVERSION; ci->lf_conversion = DEFAULT_LFCONVERSION;
if (ci->true_is_minus1 < 0) if (ci->true_is_minus1 < 0)
...@@ -960,11 +960,11 @@ getDSNinfo(ConnInfo *ci, char overwrite) ...@@ -960,11 +960,11 @@ getDSNinfo(ConnInfo *ci, char overwrite)
ci->disallow_premature = atoi(temp); ci->disallow_premature = atoi(temp);
} }
if (ci->updatable_cursors < 0 || overwrite) if (ci->allow_keyset < 0 || overwrite)
{ {
SQLGetPrivateProfileString(DSN, INI_UPDATABLECURSORS, "", temp, sizeof(temp), ODBC_INI); SQLGetPrivateProfileString(DSN, INI_UPDATABLECURSORS, "", temp, sizeof(temp), ODBC_INI);
if (temp[0]) if (temp[0])
ci->updatable_cursors = atoi(temp); ci->allow_keyset = atoi(temp);
} }
if (ci->lf_conversion < 0 || overwrite) if (ci->lf_conversion < 0 || overwrite)
...@@ -1094,7 +1094,7 @@ writeDSNinfo(const ConnInfo *ci) ...@@ -1094,7 +1094,7 @@ writeDSNinfo(const ConnInfo *ci)
INI_DISALLOWPREMATURE, INI_DISALLOWPREMATURE,
temp, temp,
ODBC_INI); ODBC_INI);
sprintf(temp, "%d", ci->updatable_cursors); sprintf(temp, "%d", ci->allow_keyset);
SQLWritePrivateProfileString(DSN, SQLWritePrivateProfileString(DSN,
INI_UPDATABLECURSORS, INI_UPDATABLECURSORS,
temp, temp,
......
...@@ -78,6 +78,12 @@ PGAPI_FreeEnv(HENV henv) ...@@ -78,6 +78,12 @@ PGAPI_FreeEnv(HENV henv)
} }
static void
pg_sqlstate_set(const EnvironmentClass *env, UCHAR *szSqlState, const UCHAR *ver3str, const UCHAR *ver2str)
{
strcpy(szSqlState, EN_is_odbc3(env) ? ver3str : ver2str);
}
#define DRVMNGRDIV 511 #define DRVMNGRDIV 511
/* Returns the next SQL error information. */ /* Returns the next SQL error information. */
RETCODE SQL_API RETCODE SQL_API
...@@ -92,6 +98,7 @@ PGAPI_StmtError( HSTMT hstmt, ...@@ -92,6 +98,7 @@ PGAPI_StmtError( HSTMT hstmt,
{ {
/* CC: return an error of a hstmt */ /* CC: return an error of a hstmt */
StatementClass *stmt = (StatementClass *) hstmt; StatementClass *stmt = (StatementClass *) hstmt;
EnvironmentClass *env = (EnvironmentClass *) SC_get_conn(stmt)->henv;
char *msg; char *msg;
int status; int status;
BOOL partial_ok = ((flag & PODBC_ALLOW_PARTIAL_EXTRACT) != 0), BOOL partial_ok = ((flag & PODBC_ALLOW_PARTIAL_EXTRACT) != 0),
...@@ -173,120 +180,124 @@ PGAPI_StmtError( HSTMT hstmt, ...@@ -173,120 +180,124 @@ PGAPI_StmtError( HSTMT hstmt,
{ {
/* now determine the SQLSTATE to be returned */ /* now determine the SQLSTATE to be returned */
case STMT_ROW_VERSION_CHANGED: case STMT_ROW_VERSION_CHANGED:
strcpy(szSqlState, "01001"); pg_sqlstate_set(env, szSqlState, "01001", "01001");
/* data truncated */ /* data truncated */
break; break;
case STMT_TRUNCATED: case STMT_TRUNCATED:
strcpy(szSqlState, "01004"); pg_sqlstate_set(env, szSqlState, "01004", "01004");
/* data truncated */ /* data truncated */
break; break;
case STMT_INFO_ONLY: case STMT_INFO_ONLY:
strcpy(szSqlState, "00000"); pg_sqlstate_set(env, szSqlState, "00000", "0000");
/* just information that is returned, no error */ /* just information that is returned, no error */
break; break;
case STMT_BAD_ERROR: case STMT_BAD_ERROR:
strcpy(szSqlState, "08S01"); pg_sqlstate_set(env, szSqlState, "08S01", "08S01");
/* communication link failure */ /* communication link failure */
break; break;
case STMT_CREATE_TABLE_ERROR: case STMT_CREATE_TABLE_ERROR:
strcpy(szSqlState, "S0001"); pg_sqlstate_set(env, szSqlState, "42S01", "S0001");
/* table already exists */ /* table already exists */
break; break;
case STMT_STATUS_ERROR: case STMT_STATUS_ERROR:
case STMT_SEQUENCE_ERROR: case STMT_SEQUENCE_ERROR:
strcpy(szSqlState, "S1010"); pg_sqlstate_set(env, szSqlState, "HY010", "S1010");
/* Function sequence error */ /* Function sequence error */
break; break;
case STMT_NO_MEMORY_ERROR: case STMT_NO_MEMORY_ERROR:
strcpy(szSqlState, "S1001"); pg_sqlstate_set(env, szSqlState, "HY001", "S1001");
/* memory allocation failure */ /* memory allocation failure */
break; break;
case STMT_COLNUM_ERROR: case STMT_COLNUM_ERROR:
strcpy(szSqlState, "S1002"); pg_sqlstate_set(env, szSqlState, "07009", "S1002");
/* invalid column number */ /* invalid column number */
break; break;
case STMT_NO_STMTSTRING: case STMT_NO_STMTSTRING:
strcpy(szSqlState, "S1001"); pg_sqlstate_set(env, szSqlState, "HY001", "S1001");
/* having no stmtstring is also a malloc problem */ /* having no stmtstring is also a malloc problem */
break; break;
case STMT_ERROR_TAKEN_FROM_BACKEND: case STMT_ERROR_TAKEN_FROM_BACKEND:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* general error */ /* general error */
break; break;
case STMT_INTERNAL_ERROR: case STMT_INTERNAL_ERROR:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* general error */ /* general error */
break; break;
case STMT_FETCH_OUT_OF_RANGE:
pg_sqlstate_set(env, szSqlState, "HY106", "S1106");
break;
case STMT_ROW_OUT_OF_RANGE: case STMT_ROW_OUT_OF_RANGE:
strcpy(szSqlState, "S1107"); pg_sqlstate_set(env, szSqlState, "HY107", "S1107");
break; break;
case STMT_OPERATION_CANCELLED: case STMT_OPERATION_CANCELLED:
strcpy(szSqlState, "S1008"); pg_sqlstate_set(env, szSqlState, "HY008", "S1008");
break; break;
case STMT_NOT_IMPLEMENTED_ERROR: case STMT_NOT_IMPLEMENTED_ERROR:
strcpy(szSqlState, "S1C00"); /* == 'driver not pg_sqlstate_set(env, szSqlState, "HYC00", "S1C00"); /* == 'driver not
* capable' */ * capable' */
break; break;
case STMT_OPTION_OUT_OF_RANGE_ERROR: case STMT_OPTION_OUT_OF_RANGE_ERROR:
strcpy(szSqlState, "S1092"); pg_sqlstate_set(env, szSqlState, "HY092", "S1092");
break; break;
case STMT_BAD_PARAMETER_NUMBER_ERROR: case STMT_BAD_PARAMETER_NUMBER_ERROR:
strcpy(szSqlState, "S1093"); pg_sqlstate_set(env, szSqlState, "07009", "S1093");
break; break;
case STMT_INVALID_COLUMN_NUMBER_ERROR: case STMT_INVALID_COLUMN_NUMBER_ERROR:
strcpy(szSqlState, "S1002"); pg_sqlstate_set(env, szSqlState, "07009", "S1002");
break; break;
case STMT_RESTRICTED_DATA_TYPE_ERROR: case STMT_RESTRICTED_DATA_TYPE_ERROR:
strcpy(szSqlState, "07006"); pg_sqlstate_set(env, szSqlState, "07006", "07006");
break; break;
case STMT_INVALID_CURSOR_STATE_ERROR: case STMT_INVALID_CURSOR_STATE_ERROR:
strcpy(szSqlState, "24000"); pg_sqlstate_set(env, szSqlState, "07005", "24000");
break; break;
case STMT_ERROR_IN_ROW: case STMT_ERROR_IN_ROW:
strcpy(szSqlState, "01S01"); pg_sqlstate_set(env, szSqlState, "01S01", "01S01");
break; break;
case STMT_OPTION_VALUE_CHANGED: case STMT_OPTION_VALUE_CHANGED:
strcpy(szSqlState, "01S02"); pg_sqlstate_set(env, szSqlState, "01S02", "01S02");
break; break;
case STMT_POS_BEFORE_RECORDSET: case STMT_POS_BEFORE_RECORDSET:
strcpy(szSqlState, "01S06"); pg_sqlstate_set(env, szSqlState, "01S06", "01S06");
break; break;
case STMT_INVALID_CURSOR_NAME: case STMT_INVALID_CURSOR_NAME:
strcpy(szSqlState, "34000"); pg_sqlstate_set(env, szSqlState, "34000", "34000");
break; break;
case STMT_NO_CURSOR_NAME: case STMT_NO_CURSOR_NAME:
strcpy(szSqlState, "S1015"); pg_sqlstate_set(env, szSqlState, "S1015", "S1015");
break; break;
case STMT_INVALID_ARGUMENT_NO: case STMT_INVALID_ARGUMENT_NO:
strcpy(szSqlState, "S1009"); pg_sqlstate_set(env, szSqlState, "HY024", "S1009");
/* invalid argument value */ /* invalid argument value */
break; break;
case STMT_INVALID_CURSOR_POSITION: case STMT_INVALID_CURSOR_POSITION:
strcpy(szSqlState, "S1109"); pg_sqlstate_set(env, szSqlState, "HY109", "S1109");
break; break;
case STMT_RETURN_NULL_WITHOUT_INDICATOR: case STMT_RETURN_NULL_WITHOUT_INDICATOR:
strcpy(szSqlState, "22002"); pg_sqlstate_set(env, szSqlState, "22002", "22002");
break; break;
case STMT_VALUE_OUT_OF_RANGE: case STMT_VALUE_OUT_OF_RANGE:
strcpy(szSqlState, "22003"); pg_sqlstate_set(env, szSqlState, "HY019", "22003");
break; break;
case STMT_OPERATION_INVALID: case STMT_OPERATION_INVALID:
strcpy(szSqlState, "S1011"); pg_sqlstate_set(env, szSqlState, "HY011", "S1011");
break; break;
case STMT_INVALID_DESCRIPTOR_IDENTIFIER: case STMT_INVALID_DESCRIPTOR_IDENTIFIER:
strcpy(szSqlState, "HY091"); pg_sqlstate_set(env, szSqlState, "HY091", "HY091");
break; break;
case STMT_INVALID_OPTION_IDENTIFIER: case STMT_INVALID_OPTION_IDENTIFIER:
strcpy(szSqlState, "HY092"); pg_sqlstate_set(env, szSqlState, "HY092", "HY092");
break; break;
case STMT_OPTION_NOT_FOR_THE_DRIVER: case STMT_OPTION_NOT_FOR_THE_DRIVER:
strcpy(szSqlState, "HYC00"); pg_sqlstate_set(env, szSqlState, "HYC00", "HYC00");
break; break;
case STMT_EXEC_ERROR: case STMT_EXEC_ERROR:
default: default:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* also a general error */ /* also a general error */
break; break;
} }
...@@ -314,6 +325,7 @@ PGAPI_ConnectError( HDBC hdbc, ...@@ -314,6 +325,7 @@ PGAPI_ConnectError( HDBC hdbc,
UWORD flag) UWORD flag)
{ {
ConnectionClass *conn = (ConnectionClass *) hdbc; ConnectionClass *conn = (ConnectionClass *) hdbc;
EnvironmentClass *env = (EnvironmentClass *) conn->henv;
char *msg; char *msg;
int status; int status;
BOOL once_again = FALSE; BOOL once_again = FALSE;
...@@ -357,43 +369,43 @@ PGAPI_ConnectError( HDBC hdbc, ...@@ -357,43 +369,43 @@ PGAPI_ConnectError( HDBC hdbc,
{ {
case STMT_OPTION_VALUE_CHANGED: case STMT_OPTION_VALUE_CHANGED:
case CONN_OPTION_VALUE_CHANGED: case CONN_OPTION_VALUE_CHANGED:
strcpy(szSqlState, "01S02"); pg_sqlstate_set(env, szSqlState, "01S02", "01S02");
break; break;
case STMT_TRUNCATED: case STMT_TRUNCATED:
case CONN_TRUNCATED: case CONN_TRUNCATED:
strcpy(szSqlState, "01004"); pg_sqlstate_set(env, szSqlState, "01004", "01004");
/* data truncated */ /* data truncated */
break; break;
case CONN_INIREAD_ERROR: case CONN_INIREAD_ERROR:
strcpy(szSqlState, "IM002"); pg_sqlstate_set(env, szSqlState, "IM002", "IM002");
/* data source not found */ /* data source not found */
break; break;
case CONNECTION_SERVER_NOT_REACHED: case CONNECTION_SERVER_NOT_REACHED:
case CONN_OPENDB_ERROR: case CONN_OPENDB_ERROR:
strcpy(szSqlState, "08001"); pg_sqlstate_set(env, szSqlState, "08001", "08001");
/* unable to connect to data source */ /* unable to connect to data source */
break; break;
case CONN_INVALID_AUTHENTICATION: case CONN_INVALID_AUTHENTICATION:
case CONN_AUTH_TYPE_UNSUPPORTED: case CONN_AUTH_TYPE_UNSUPPORTED:
strcpy(szSqlState, "28000"); pg_sqlstate_set(env, szSqlState, "28000", "28000");
break; break;
case CONN_STMT_ALLOC_ERROR: case CONN_STMT_ALLOC_ERROR:
strcpy(szSqlState, "S1001"); pg_sqlstate_set(env, szSqlState, "HY001", "S1001");
/* memory allocation failure */ /* memory allocation failure */
break; break;
case CONN_IN_USE: case CONN_IN_USE:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* general error */ /* general error */
break; break;
case CONN_UNSUPPORTED_OPTION: case CONN_UNSUPPORTED_OPTION:
strcpy(szSqlState, "IM001"); pg_sqlstate_set(env, szSqlState, "IM001", "IM001");
/* driver does not support this function */ /* driver does not support this function */
case CONN_INVALID_ARGUMENT_NO: case CONN_INVALID_ARGUMENT_NO:
strcpy(szSqlState, "S1009"); pg_sqlstate_set(env, szSqlState, "HY009", "S1009");
/* invalid argument value */ /* invalid argument value */
break; break;
case CONN_TRANSACT_IN_PROGRES: case CONN_TRANSACT_IN_PROGRES:
strcpy(szSqlState, "S1010"); pg_sqlstate_set(env, szSqlState, "HY010", "S1010");
/* /*
* when the user tries to switch commit mode in a * when the user tries to switch commit mode in a
...@@ -402,21 +414,21 @@ PGAPI_ConnectError( HDBC hdbc, ...@@ -402,21 +414,21 @@ PGAPI_ConnectError( HDBC hdbc,
/* -> function sequence error */ /* -> function sequence error */
break; break;
case CONN_NO_MEMORY_ERROR: case CONN_NO_MEMORY_ERROR:
strcpy(szSqlState, "S1001"); pg_sqlstate_set(env, szSqlState, "HY001", "S1001");
break; break;
case CONN_NOT_IMPLEMENTED_ERROR: case CONN_NOT_IMPLEMENTED_ERROR:
case STMT_NOT_IMPLEMENTED_ERROR: case STMT_NOT_IMPLEMENTED_ERROR:
strcpy(szSqlState, "S1C00"); pg_sqlstate_set(env, szSqlState, "HYC00", "S1C00");
break; break;
case STMT_RETURN_NULL_WITHOUT_INDICATOR: case STMT_RETURN_NULL_WITHOUT_INDICATOR:
strcpy(szSqlState, "22002"); pg_sqlstate_set(env, szSqlState, "22002", "22002");
break; break;
case CONN_VALUE_OUT_OF_RANGE: case CONN_VALUE_OUT_OF_RANGE:
case STMT_VALUE_OUT_OF_RANGE: case STMT_VALUE_OUT_OF_RANGE:
strcpy(szSqlState, "22003"); pg_sqlstate_set(env, szSqlState, "HY019", "22003");
break; break;
default: default:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* general error */ /* general error */
break; break;
} }
...@@ -455,7 +467,7 @@ PGAPI_EnvError( HENV henv, ...@@ -455,7 +467,7 @@ PGAPI_EnvError( HENV henv,
mylog("EN_get_error: status = %d, msg = #%s#\n", status, msg); mylog("EN_get_error: status = %d, msg = #%s#\n", status, msg);
if (NULL != szSqlState) if (NULL != szSqlState)
strcpy(szSqlState, "00000"); pg_sqlstate_set(env, szSqlState, "00000", "00000");
if (NULL != pcbErrorMsg) if (NULL != pcbErrorMsg)
*pcbErrorMsg = 0; *pcbErrorMsg = 0;
if ((NULL != szErrorMsg) && (cbErrorMsgMax > 0)) if ((NULL != szErrorMsg) && (cbErrorMsgMax > 0))
...@@ -478,10 +490,10 @@ PGAPI_EnvError( HENV henv, ...@@ -478,10 +490,10 @@ PGAPI_EnvError( HENV henv,
{ {
case ENV_ALLOC_ERROR: case ENV_ALLOC_ERROR:
/* memory allocation failure */ /* memory allocation failure */
strcpy(szSqlState, "S1001"); pg_sqlstate_set(env, szSqlState, "HY001", "S1001");
break; break;
default: default:
strcpy(szSqlState, "S1000"); pg_sqlstate_set(env, szSqlState, "HY000", "S1000");
/* general error */ /* general error */
break; break;
} }
......
...@@ -212,6 +212,7 @@ PGAPI_Execute( ...@@ -212,6 +212,7 @@ PGAPI_Execute(
int i, int i,
retval, start_row, end_row; retval, start_row, end_row;
int cursor_type, scroll_concurrency; int cursor_type, scroll_concurrency;
QResultClass *res;
mylog("%s: entering...\n", func); mylog("%s: entering...\n", func);
...@@ -403,6 +404,23 @@ next_param_row: ...@@ -403,6 +404,23 @@ next_param_row:
{ {
if (ipdopts->param_processed_ptr) if (ipdopts->param_processed_ptr)
(*ipdopts->param_processed_ptr)++; (*ipdopts->param_processed_ptr)++;
/* special handling of result for keyset driven cursors */
if (SQL_CURSOR_KEYSET_DRIVEN == stmt->options.cursor_type &&
SQL_CONCUR_READ_ONLY != stmt->options.scroll_concurrency)
{
QResultClass *kres;
res = SC_get_Result(stmt);
if (kres = res->next, kres)
{
kres->fields = res->fields;
res->fields = NULL;
kres->num_fields = res->num_fields;
res->next = NULL;
QR_Destructor(res);
SC_set_Result(stmt, kres);
}
}
} }
#if (ODBCVER >= 0x0300) #if (ODBCVER >= 0x0300)
if (ipdopts->param_status_ptr) if (ipdopts->param_status_ptr)
...@@ -440,7 +458,7 @@ next_param_row: ...@@ -440,7 +458,7 @@ next_param_row:
BOOL in_trans = CC_is_in_trans(conn); BOOL in_trans = CC_is_in_trans(conn);
BOOL issued_begin = FALSE, BOOL issued_begin = FALSE,
begin_included = FALSE; begin_included = FALSE;
QResultClass *res, *curres; QResultClass *curres;
if (strnicmp(stmt->stmt_with_params, "BEGIN;", 6) == 0) if (strnicmp(stmt->stmt_with_params, "BEGIN;", 6) == 0)
begin_included = TRUE; begin_included = TRUE;
...@@ -474,8 +492,10 @@ next_param_row: ...@@ -474,8 +492,10 @@ next_param_row:
stmt->status = STMT_FINISHED; stmt->status = STMT_FINISHED;
return SQL_SUCCESS; return SQL_SUCCESS;
} }
else if (stmt->options.cursor_type != cursor_type || if (res = SC_get_Curres(stmt), res)
stmt->options.scroll_concurrency != scroll_concurrency) stmt->diag_row_count = res->recent_processed_row_count;
if (stmt->options.cursor_type != cursor_type ||
stmt->options.scroll_concurrency != scroll_concurrency)
{ {
stmt->errornumber = STMT_OPTION_VALUE_CHANGED; stmt->errornumber = STMT_OPTION_VALUE_CHANGED;
stmt->errormsg = "cursor updatability changed"; stmt->errormsg = "cursor updatability changed";
...@@ -548,7 +568,7 @@ PGAPI_Transact( ...@@ -548,7 +568,7 @@ PGAPI_Transact(
if (!res) if (!res)
{ {
/* error msg will be in the connection */ /* error msg will be in the connection */
CC_on_abort(conn, TRUE); CC_on_abort(conn, NO_TRANS);
CC_log_error(func, "", conn); CC_log_error(func, "", conn);
return SQL_ERROR; return SQL_ERROR;
} }
...@@ -558,7 +578,7 @@ PGAPI_Transact( ...@@ -558,7 +578,7 @@ PGAPI_Transact(
if (!ok) if (!ok)
{ {
CC_on_abort(conn, TRUE); CC_on_abort(conn, NO_TRANS);
CC_log_error(func, "", conn); CC_log_error(func, "", conn);
return SQL_ERROR; return SQL_ERROR;
} }
......
...@@ -210,7 +210,10 @@ PGAPI_GetInfo( ...@@ -210,7 +210,10 @@ PGAPI_GetInfo(
case SQL_DEFAULT_TXN_ISOLATION: /* ODBC 1.0 */ case SQL_DEFAULT_TXN_ISOLATION: /* ODBC 1.0 */
len = 4; len = 4;
value = SQL_TXN_READ_COMMITTED; /* SQL_TXN_SERIALIZABLE; */ if (PG_VERSION_LT(conn, 6.5))
value = SQL_TXN_SERIALIZABLE;
else
value = SQL_TXN_READ_COMMITTED;
break; break;
case SQL_DRIVER_NAME: /* ODBC 1.0 */ case SQL_DRIVER_NAME: /* ODBC 1.0 */
...@@ -505,7 +508,7 @@ PGAPI_GetInfo( ...@@ -505,7 +508,7 @@ PGAPI_GetInfo(
case SQL_POS_OPERATIONS: /* ODBC 2.0 */ case SQL_POS_OPERATIONS: /* ODBC 2.0 */
len = 4; len = 4;
value = ci->drivers.lie ? (SQL_POS_POSITION | SQL_POS_REFRESH | SQL_POS_UPDATE | SQL_POS_DELETE | SQL_POS_ADD) : (SQL_POS_POSITION | SQL_POS_REFRESH); value = (SQL_POS_POSITION | SQL_POS_REFRESH);
#ifdef DRIVER_CURSOR_IMPLEMENT #ifdef DRIVER_CURSOR_IMPLEMENT
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= (SQL_POS_UPDATE | SQL_POS_DELETE | SQL_POS_ADD); value |= (SQL_POS_UPDATE | SQL_POS_DELETE | SQL_POS_ADD);
...@@ -557,32 +560,29 @@ PGAPI_GetInfo( ...@@ -557,32 +560,29 @@ PGAPI_GetInfo(
* Driver doesn't support keyset-driven or mixed cursors, so * Driver doesn't support keyset-driven or mixed cursors, so
* not much point in saying row updates are supported * not much point in saying row updates are supported
*/ */
p = (ci->drivers.lie || ci->updatable_cursors) ? "Y" : "N"; p = (ci->updatable_cursors) ? "Y" : "N";
break; break;
case SQL_SCROLL_CONCURRENCY: /* ODBC 1.0 */ case SQL_SCROLL_CONCURRENCY: /* ODBC 1.0 */
len = 4; len = 4;
value = ci->drivers.lie ? (SQL_SCCO_READ_ONLY | value = SQL_SCCO_READ_ONLY;
SQL_SCCO_LOCK |
SQL_SCCO_OPT_ROWVER |
SQL_SCCO_OPT_VALUES) :
(SQL_SCCO_READ_ONLY);
#ifdef DRIVER_CURSOR_IMPLEMENT #ifdef DRIVER_CURSOR_IMPLEMENT
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= SQL_SCCO_OPT_ROWVER; value |= SQL_SCCO_OPT_ROWVER;
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
if (ci->drivers.lie)
value |= (SQL_SCCO_LOCK | SQL_SCCO_OPT_VALUES);
break; break;
case SQL_SCROLL_OPTIONS: /* ODBC 1.0 */ case SQL_SCROLL_OPTIONS: /* ODBC 1.0 */
len = 4; len = 4;
value = ci->drivers.lie ? (SQL_SO_FORWARD_ONLY | value = SQL_SO_FORWARD_ONLY;
SQL_SO_STATIC | if (!ci->drivers.use_declarefetch)
SQL_SO_KEYSET_DRIVEN | value |= SQL_SO_STATIC;
SQL_SO_DYNAMIC |
SQL_SO_MIXED)
: (ci->drivers.use_declarefetch ? SQL_SO_FORWARD_ONLY : (SQL_SO_FORWARD_ONLY | SQL_SO_STATIC));
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= 0; /* SQL_SO_KEYSET_DRIVEN in the furure */ value |= SQL_SO_KEYSET_DRIVEN;
if (ci->drivers.lie)
value |= (SQL_SO_DYNAMIC | SQL_SO_MIXED);
break; break;
case SQL_SEARCH_PATTERN_ESCAPE: /* ODBC 1.0 */ case SQL_SEARCH_PATTERN_ESCAPE: /* ODBC 1.0 */
...@@ -602,7 +602,7 @@ PGAPI_GetInfo( ...@@ -602,7 +602,7 @@ PGAPI_GetInfo(
case SQL_STATIC_SENSITIVITY: /* ODBC 2.0 */ case SQL_STATIC_SENSITIVITY: /* ODBC 2.0 */
len = 4; len = 4;
value = ci->drivers.lie ? (SQL_SS_ADDITIONS | SQL_SS_DELETIONS | SQL_SS_UPDATES) : 0; value = 0;
#ifdef DRIVER_CURSOR_IMPLEMENT #ifdef DRIVER_CURSOR_IMPLEMENT
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= (SQL_SS_ADDITIONS | SQL_SS_DELETIONS | SQL_SS_UPDATES); value |= (SQL_SS_ADDITIONS | SQL_SS_DELETIONS | SQL_SS_UPDATES);
...@@ -666,7 +666,12 @@ PGAPI_GetInfo( ...@@ -666,7 +666,12 @@ PGAPI_GetInfo(
case SQL_TXN_ISOLATION_OPTION: /* ODBC 1.0 */ case SQL_TXN_ISOLATION_OPTION: /* ODBC 1.0 */
len = 4; len = 4;
value = SQL_TXN_READ_COMMITTED; /* SQL_TXN_SERIALIZABLE; */ if (PG_VERSION_LT(conn, 6.5))
value = SQL_TXN_SERIALIZABLE;
else if (PG_VERSION_GE(conn, 7.1))
value = SQL_TXN_READ_COMMITTED | SQL_TXN_SERIALIZABLE;
else
value = SQL_TXN_READ_COMMITTED;
break; break;
case SQL_UNION: /* ODBC 2.0 */ case SQL_UNION: /* ODBC 2.0 */
...@@ -2097,7 +2102,7 @@ PGAPI_SpecialColumns( ...@@ -2097,7 +2102,7 @@ PGAPI_SpecialColumns(
RETCODE result; RETCODE result;
char relhasrules[MAX_INFO_STRING]; char relhasrules[MAX_INFO_STRING];
mylog("%s: entering...stmt=%u scnm=%x len=%d\n", func, stmt, szTableOwner, cbTableOwner); mylog("%s: entering...stmt=%u scnm=%x len=%d colType=%d\n", func, stmt, szTableOwner, cbTableOwner, fColType);
if (!stmt) if (!stmt)
{ {
...@@ -2221,6 +2226,43 @@ PGAPI_SpecialColumns( ...@@ -2221,6 +2226,43 @@ PGAPI_SpecialColumns(
} }
} }
} }
else
{
/* use the oid value for the rowid */
if (fColType == SQL_BEST_ROWID)
{
row = (TupleNode *) malloc(sizeof(TupleNode) + (8 - 1) *sizeof(TupleField));
set_tuplefield_int2(&row->tuple[0], SQL_SCOPE_SESSION);
set_tuplefield_string(&row->tuple[1], "oid");
set_tuplefield_int2(&row->tuple[2], pgtype_to_concise_type(stmt, PG_TYPE_OID));
set_tuplefield_string(&row->tuple[3], "OID");
set_tuplefield_int4(&row->tuple[4], pgtype_column_size(stmt, PG_TYPE_OID, PG_STATIC, PG_STATIC));
set_tuplefield_int4(&row->tuple[5], pgtype_buffer_length(stmt, PG_TYPE_OID, PG_STATIC, PG_STATIC));
set_tuplefield_int2(&row->tuple[6], pgtype_decimal_digits(stmt, PG_TYPE_OID, PG_STATIC));
set_tuplefield_int2(&row->tuple[7], SQL_PC_NOT_PSEUDO);
QR_add_tuple(res, row);
}
else if (fColType == SQL_ROWVER)
{
Int2 the_type = PG_TYPE_TID;
row = (TupleNode *) malloc(sizeof(TupleNode) + (8 - 1) *sizeof(TupleField));
set_tuplefield_null(&row->tuple[0]);
set_tuplefield_string(&row->tuple[1], "ctid");
set_tuplefield_int2(&row->tuple[2], pgtype_to_concise_type(stmt, the_type));
set_tuplefield_string(&row->tuple[3], pgtype_to_name(stmt, the_type));
set_tuplefield_int4(&row->tuple[4], pgtype_column_size(stmt, the_type, PG_STATIC, PG_STATIC));
set_tuplefield_int4(&row->tuple[5], pgtype_buffer_length(stmt, the_type, PG_STATIC, PG_STATIC));
set_tuplefield_int2(&row->tuple[6], pgtype_decimal_digits(stmt, the_type, PG_STATIC));
set_tuplefield_int2(&row->tuple[7], SQL_PC_NOT_PSEUDO);
QR_add_tuple(res, row);
}
}
stmt->status = STMT_FINISHED; stmt->status = STMT_FINISHED;
stmt->currTuple = -1; stmt->currTuple = -1;
...@@ -3124,7 +3166,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName, ...@@ -3124,7 +3166,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName,
{ {
if (res = CC_send_query(conn, "select getdatabaseencoding()", NULL, CLEAR_RESULT_ON_ABORT), res) if (res = CC_send_query(conn, "select getdatabaseencoding()", NULL, CLEAR_RESULT_ON_ABORT), res)
{ {
if (QR_get_num_tuples(res) > 0) if (QR_get_num_backend_tuples(res) > 0)
conn->server_encoding = strdup(QR_get_value_backend_row(res, 0, 0)); conn->server_encoding = strdup(QR_get_value_backend_row(res, 0, 0));
QR_Destructor(res); QR_Destructor(res);
} }
...@@ -3140,7 +3182,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName, ...@@ -3140,7 +3182,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName,
relid, serverColumnName); relid, serverColumnName);
if (res = CC_send_query(conn, query, NULL, CLEAR_RESULT_ON_ABORT), res) if (res = CC_send_query(conn, query, NULL, CLEAR_RESULT_ON_ABORT), res)
{ {
if (QR_get_num_tuples(res) > 0) if (QR_get_num_backend_tuples(res) > 0)
{ {
strcpy(saveattnum, QR_get_value_backend_row(res, 0, 0)); strcpy(saveattnum, QR_get_value_backend_row(res, 0, 0));
} }
...@@ -3165,7 +3207,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName, ...@@ -3165,7 +3207,7 @@ getClientColumnName(ConnectionClass *conn, UInt4 relid, char *serverColumnName,
sprintf(query, "select attname from pg_attribute where attrelid = %u and attnum = %s", relid, saveattnum); sprintf(query, "select attname from pg_attribute where attrelid = %u and attnum = %s", relid, saveattnum);
if (res = CC_send_query(conn, query, NULL, CLEAR_RESULT_ON_ABORT), res) if (res = CC_send_query(conn, query, NULL, CLEAR_RESULT_ON_ABORT), res)
{ {
if (QR_get_num_tuples(res) > 0) if (QR_get_num_backend_tuples(res) > 0)
{ {
ret = strdup(QR_get_value_backend_row(res, 0, 0)); ret = strdup(QR_get_value_backend_row(res, 0, 0));
*nameAlloced = TRUE; *nameAlloced = TRUE;
...@@ -4135,7 +4177,7 @@ PGAPI_Procedures( ...@@ -4135,7 +4177,7 @@ PGAPI_Procedures(
* The following seems the simplest implementation * The following seems the simplest implementation
*/ */
if (conn->schema_support) if (conn->schema_support)
strcpy(proc_query, "select '' as " "PROCEDURE_CAT" ", case when nspname = 'PUBLIC' then ''::text else nspname end as " "PROCEDURE_SCHEM" "," strcpy(proc_query, "select '' as " "PROCEDURE_CAT" ", nspname as " "PROCEDURE_SCHEM" ","
" proname as " "PROCEDURE_NAME" ", '' as " "NUM_INPUT_PARAMS" "," " proname as " "PROCEDURE_NAME" ", '' as " "NUM_INPUT_PARAMS" ","
" '' as " "NUM_OUTPUT_PARAMS" ", '' as " "NUM_RESULT_SETS" "," " '' as " "NUM_OUTPUT_PARAMS" ", '' as " "NUM_RESULT_SETS" ","
" '' as " "REMARKS" "," " '' as " "REMARKS" ","
...@@ -4204,7 +4246,7 @@ usracl_auth(char *usracl, const char *auth) ...@@ -4204,7 +4246,7 @@ usracl_auth(char *usracl, const char *auth)
static void static void
useracl_upd(char (*useracl)[ACLMAX], QResultClass *allures, const char *user, const char *auth) useracl_upd(char (*useracl)[ACLMAX], QResultClass *allures, const char *user, const char *auth)
{ {
int usercount = QR_get_num_tuples(allures), i, addcnt = 0; int usercount = QR_get_num_backend_tuples(allures), i, addcnt = 0;
mylog("user=%s auth=%s\n", user, auth); mylog("user=%s auth=%s\n", user, auth);
if (user[0]) if (user[0])
...@@ -4315,7 +4357,7 @@ PGAPI_TablePrivileges( ...@@ -4315,7 +4357,7 @@ PGAPI_TablePrivileges(
return SQL_ERROR; return SQL_ERROR;
} }
strncpy_null(proc_query, "select usename, usesysid, usesuper from pg_user", sizeof(proc_query)); strncpy_null(proc_query, "select usename, usesysid, usesuper from pg_user", sizeof(proc_query));
tablecount = QR_get_num_tuples(res); tablecount = QR_get_num_backend_tuples(res);
if (allures = CC_send_query(conn, proc_query, NULL, CLEAR_RESULT_ON_ABORT), !allures) if (allures = CC_send_query(conn, proc_query, NULL, CLEAR_RESULT_ON_ABORT), !allures)
{ {
QR_Destructor(res); QR_Destructor(res);
...@@ -4323,7 +4365,7 @@ PGAPI_TablePrivileges( ...@@ -4323,7 +4365,7 @@ PGAPI_TablePrivileges(
stmt->errormsg = "PGAPI_TablePrivileges query error"; stmt->errormsg = "PGAPI_TablePrivileges query error";
return SQL_ERROR; return SQL_ERROR;
} }
usercount = QR_get_num_tuples(allures); usercount = QR_get_num_backend_tuples(allures);
useracl = (char (*)[ACLMAX]) malloc(usercount * sizeof(char [ACLMAX])); useracl = (char (*)[ACLMAX]) malloc(usercount * sizeof(char [ACLMAX]));
for (i = 0; i < tablecount; i++) for (i = 0; i < tablecount; i++)
{ {
......
...@@ -38,12 +38,11 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -38,12 +38,11 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
case SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1: case SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1:
len = 4; len = 4;
value = SQL_CA1_NEXT | SQL_CA1_ABSOLUTE | value = SQL_CA1_NEXT; /* others aren't allowed in ODBC spec */
SQL_CA1_RELATIVE | SQL_CA1_BOOKMARK;
break; break;
case SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2: case SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2:
len = 4; len = 4;
value = 0; value = SQL_CA2_READ_ONLY_CONCURRENCY;
break; break;
case SQL_KEYSET_CURSOR_ATTRIBUTES1: case SQL_KEYSET_CURSOR_ATTRIBUTES1:
len = 4; len = 4;
...@@ -71,6 +70,8 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -71,6 +70,8 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
value = 0; value = 0;
if (ci->updatable_cursors || ci->drivers.lie) if (ci->updatable_cursors || ci->drivers.lie)
value |= (SQL_CA2_OPT_ROWVER_CONCURRENCY value |= (SQL_CA2_OPT_ROWVER_CONCURRENCY
/*| SQL_CA2_CRC_APPROXIMATE*/
| SQL_CA2_CRC_EXACT
| SQL_CA2_SENSITIVITY_DELETIONS | SQL_CA2_SENSITIVITY_DELETIONS
| SQL_CA2_SENSITIVITY_UPDATES | SQL_CA2_SENSITIVITY_UPDATES
/* | SQL_CA2_SENSITIVITY_ADDITIONS */ /* | SQL_CA2_SENSITIVITY_ADDITIONS */
...@@ -85,8 +86,6 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -85,8 +86,6 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
| SQL_CA2_MAX_ROWS_UPDATE | SQL_CA2_MAX_ROWS_UPDATE
| SQL_CA2_MAX_ROWS_CATALOG | SQL_CA2_MAX_ROWS_CATALOG
| SQL_CA2_MAX_ROWS_AFFECTS_ALL | SQL_CA2_MAX_ROWS_AFFECTS_ALL
| SQL_CA2_CRC_EXACT
| SQL_CA2_CRC_APPROXIMATE
| SQL_CA2_SIMULATE_NON_UNIQUE | SQL_CA2_SIMULATE_NON_UNIQUE
| SQL_CA2_SIMULATE_TRY_UNIQUE | SQL_CA2_SIMULATE_TRY_UNIQUE
| SQL_CA2_SIMULATE_UNIQUE | SQL_CA2_SIMULATE_UNIQUE
...@@ -101,6 +100,7 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -101,6 +100,7 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
| SQL_CA1_POS_REFRESH; | SQL_CA1_POS_REFRESH;
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= (SQL_CA1_POS_UPDATE | SQL_CA1_POS_DELETE value |= (SQL_CA1_POS_UPDATE | SQL_CA1_POS_DELETE
| SQL_CA1_BULK_ADD
); );
break; break;
case SQL_STATIC_CURSOR_ATTRIBUTES2: case SQL_STATIC_CURSOR_ATTRIBUTES2:
...@@ -108,6 +108,7 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -108,6 +108,7 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
value = SQL_CA2_READ_ONLY_CONCURRENCY; value = SQL_CA2_READ_ONLY_CONCURRENCY;
if (ci->updatable_cursors) if (ci->updatable_cursors)
value |= (SQL_CA2_OPT_ROWVER_CONCURRENCY value |= (SQL_CA2_OPT_ROWVER_CONCURRENCY
| SQL_CA2_CRC_EXACT
/* | SQL_CA2_SENSITIVITY_ADDITIONS /* | SQL_CA2_SENSITIVITY_ADDITIONS
| SQL_CA2_SENSITIVITY_DELETIONS | SQL_CA2_SENSITIVITY_DELETIONS
| SQL_CA2_SENSITIVITY_UPDATES */ | SQL_CA2_SENSITIVITY_UPDATES */
...@@ -117,6 +118,8 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue, ...@@ -117,6 +118,8 @@ PGAPI_GetInfo30(HDBC hdbc, UWORD fInfoType, PTR rgbInfoValue,
case SQL_ODBC_INTERFACE_CONFORMANCE: case SQL_ODBC_INTERFACE_CONFORMANCE:
len = 4; len = 4;
value = SQL_OIC_CORE; value = SQL_OIC_CORE;
if (ci->drivers.lie)
value = SQL_OIC_LEVEL2;
break; break;
case SQL_ACTIVE_ENVIRONMENTS: case SQL_ACTIVE_ENVIRONMENTS:
len = 2; len = 2;
......
...@@ -105,7 +105,7 @@ mylog(char *fmt,...) ...@@ -105,7 +105,7 @@ mylog(char *fmt,...)
if (!LOGFP) if (!LOGFP)
{ {
generate_filename(MYLOGDIR, MYLOGFILE, filebuf); generate_filename(MYLOGDIR, MYLOGFILE, filebuf);
LOGFP = fopen(filebuf, PG_BINARY_W); LOGFP = fopen(filebuf, PG_BINARY_A);
setbuf(LOGFP, NULL); setbuf(LOGFP, NULL);
} }
...@@ -138,7 +138,7 @@ qlog(char *fmt,...) ...@@ -138,7 +138,7 @@ qlog(char *fmt,...)
if (!LOGFP) if (!LOGFP)
{ {
generate_filename(QLOGDIR, QLOGFILE, filebuf); generate_filename(QLOGDIR, QLOGFILE, filebuf);
LOGFP = fopen(filebuf, PG_BINARY_W); LOGFP = fopen(filebuf, PG_BINARY_A);
setbuf(LOGFP, NULL); setbuf(LOGFP, NULL);
} }
...@@ -284,8 +284,13 @@ schema_strcat(char *buf, const char *fmt, const char *s, int len, const char *tb ...@@ -284,8 +284,13 @@ schema_strcat(char *buf, const char *fmt, const char *s, int len, const char *tb
{ {
if (!s || 0 == len) if (!s || 0 == len)
{ {
if (tbname && (tbnmlen > 0 || tbnmlen == SQL_NTS)) /*
return my_strcat(buf, fmt, "public", 6); * I can find no appropriate way to find
* the CURRENT SCHEMA. If you are lucky
* you can get expected result.
*/
/***** if (tbname && (tbnmlen > 0 || tbnmlen == SQL_NTS))
return my_strcat(buf, fmt, "public", 6); *****/
return NULL; return NULL;
} }
return my_strcat(buf, fmt, s, len); return my_strcat(buf, fmt, s, len);
......
...@@ -77,10 +77,12 @@ extern void qlog(char *fmt,...); ...@@ -77,10 +77,12 @@ extern void qlog(char *fmt,...);
#define PG_BINARY O_BINARY #define PG_BINARY O_BINARY
#define PG_BINARY_R "rb" #define PG_BINARY_R "rb"
#define PG_BINARY_W "wb" #define PG_BINARY_W "wb"
#define PG_BINARY_A "ab"
#else #else
#define PG_BINARY 0 #define PG_BINARY 0
#define PG_BINARY_R "r" #define PG_BINARY_R "r"
#define PG_BINARY_W "w" #define PG_BINARY_W "w"
#define PG_BINARY_A "a"
#endif #endif
...@@ -91,7 +93,8 @@ char *make_string(const char *s, int len, char *buf); ...@@ -91,7 +93,8 @@ char *make_string(const char *s, int len, char *buf);
char *my_strcat(char *buf, const char *fmt, const char *s, int len); char *my_strcat(char *buf, const char *fmt, const char *s, int len);
char *schema_strcat(char *buf, const char *fmt, const char *s, int len, char *schema_strcat(char *buf, const char *fmt, const char *s, int len,
const char *, int); const char *, int);
#define GET_SCHEMA_NAME(nspname) (stricmp(nspname, "public") ? nspname : "") /* #define GET_SCHEMA_NAME(nspname) (stricmp(nspname, "public") ? nspname : "") */
#define GET_SCHEMA_NAME(nspname) (nspname)
/* defines for return value of my_strcpy */ /* defines for return value of my_strcpy */
#define STRCPY_SUCCESS 1 #define STRCPY_SUCCESS 1
......
This diff is collapsed.
...@@ -61,6 +61,7 @@ SQLBindParam(HSTMT StatementHandle, ...@@ -61,6 +61,7 @@ SQLBindParam(HSTMT StatementHandle,
int BufferLength = 512; /* Is it OK ? */ int BufferLength = 512; /* Is it OK ? */
mylog("[[SQLBindParam]]"); mylog("[[SQLBindParam]]");
SC_clear_error((StatementClass *) StatementHandle);
return PGAPI_BindParameter(StatementHandle, ParameterNumber, SQL_PARAM_INPUT, ValueType, ParameterType, LengthPrecision, ParameterScale, ParameterValue, BufferLength, StrLen_or_Ind); return PGAPI_BindParameter(StatementHandle, ParameterNumber, SQL_PARAM_INPUT, ValueType, ParameterType, LengthPrecision, ParameterScale, ParameterValue, BufferLength, StrLen_or_Ind);
} }
...@@ -69,6 +70,7 @@ RETCODE SQL_API ...@@ -69,6 +70,7 @@ RETCODE SQL_API
SQLCloseCursor(HSTMT StatementHandle) SQLCloseCursor(HSTMT StatementHandle)
{ {
mylog("[[SQLCloseCursor]]"); mylog("[[SQLCloseCursor]]");
SC_clear_error((StatementClass *) StatementHandle);
return PGAPI_FreeStmt(StatementHandle, SQL_CLOSE); return PGAPI_FreeStmt(StatementHandle, SQL_CLOSE);
} }
...@@ -80,6 +82,7 @@ SQLColAttribute(HSTMT StatementHandle, ...@@ -80,6 +82,7 @@ SQLColAttribute(HSTMT StatementHandle,
SQLSMALLINT *StringLength, PTR NumericAttribute) SQLSMALLINT *StringLength, PTR NumericAttribute)
{ {
mylog("[[SQLColAttribute]]"); mylog("[[SQLColAttribute]]");
SC_clear_error((StatementClass *) StatementHandle);
return PGAPI_ColAttributes(StatementHandle, ColumnNumber, return PGAPI_ColAttributes(StatementHandle, ColumnNumber,
FieldIdentifier, CharacterAttribute, BufferLength, FieldIdentifier, CharacterAttribute, BufferLength,
StringLength, NumericAttribute); StringLength, NumericAttribute);
...@@ -140,6 +143,7 @@ SQLEndTran(SQLSMALLINT HandleType, SQLHANDLE Handle, ...@@ -140,6 +143,7 @@ SQLEndTran(SQLSMALLINT HandleType, SQLHANDLE Handle,
case SQL_HANDLE_ENV: case SQL_HANDLE_ENV:
return PGAPI_Transact(Handle, SQL_NULL_HDBC, CompletionType); return PGAPI_Transact(Handle, SQL_NULL_HDBC, CompletionType);
case SQL_HANDLE_DBC: case SQL_HANDLE_DBC:
CC_clear_error((ConnectionClass *) Handle);
return PGAPI_Transact(SQL_NULL_HENV, Handle, CompletionType); return PGAPI_Transact(SQL_NULL_HENV, Handle, CompletionType);
default: default:
break; break;
...@@ -157,16 +161,18 @@ SQLFetchScroll(HSTMT StatementHandle, ...@@ -157,16 +161,18 @@ SQLFetchScroll(HSTMT StatementHandle,
RETCODE ret; RETCODE ret;
IRDFields *irdopts = SC_get_IRD(stmt); IRDFields *irdopts = SC_get_IRD(stmt);
SQLUSMALLINT *rowStatusArray = irdopts->rowStatusArray; SQLUSMALLINT *rowStatusArray = irdopts->rowStatusArray;
SQLINTEGER *pcRow = irdopts->rowsFetched; SQLINTEGER *pcRow = irdopts->rowsFetched, bkmarkoff = 0;
mylog("[[%s]] %d,%d\n", func, FetchOrientation, FetchOffset); mylog("[[%s]] %d,%d\n", func, FetchOrientation, FetchOffset);
SC_clear_error(stmt);
if (FetchOrientation == SQL_FETCH_BOOKMARK) if (FetchOrientation == SQL_FETCH_BOOKMARK)
{ {
if (stmt->options.bookmark_ptr) if (stmt->options.bookmark_ptr)
{ {
FetchOffset += *((Int4 *) stmt->options.bookmark_ptr); bkmarkoff = FetchOffset;
mylog("real FetchOffset = %d\n", FetchOffset); FetchOffset = *((Int4 *) stmt->options.bookmark_ptr);
} mylog("bookmark=%u FetchOffset = %d\n", FetchOffset, bkmarkoff);
}
else else
{ {
stmt->errornumber = STMT_SEQUENCE_ERROR; stmt->errornumber = STMT_SEQUENCE_ERROR;
...@@ -176,7 +182,7 @@ mylog("real FetchOffset = %d\n", FetchOffset); ...@@ -176,7 +182,7 @@ mylog("real FetchOffset = %d\n", FetchOffset);
} }
} }
ret = PGAPI_ExtendedFetch(StatementHandle, FetchOrientation, FetchOffset, ret = PGAPI_ExtendedFetch(StatementHandle, FetchOrientation, FetchOffset,
pcRow, rowStatusArray); pcRow, rowStatusArray, bkmarkoff);
if (ret != SQL_SUCCESS) if (ret != SQL_SUCCESS)
mylog("%s return = %d\n", func, ret); mylog("%s return = %d\n", func, ret);
return ret; return ret;
...@@ -288,6 +294,7 @@ SQLGetConnectAttr(HDBC ConnectionHandle, ...@@ -288,6 +294,7 @@ SQLGetConnectAttr(HDBC ConnectionHandle,
SQLINTEGER BufferLength, SQLINTEGER *StringLength) SQLINTEGER BufferLength, SQLINTEGER *StringLength)
{ {
mylog("[[SQLGetConnectAttr]] %d\n", Attribute); mylog("[[SQLGetConnectAttr]] %d\n", Attribute);
CC_clear_error((ConnectionClass *) ConnectionHandle);
return PGAPI_GetConnectAttr(ConnectionHandle, Attribute,Value, return PGAPI_GetConnectAttr(ConnectionHandle, Attribute,Value,
BufferLength, StringLength); BufferLength, StringLength);
} }
...@@ -301,6 +308,7 @@ SQLGetStmtAttr(HSTMT StatementHandle, ...@@ -301,6 +308,7 @@ SQLGetStmtAttr(HSTMT StatementHandle,
static char *func = "SQLGetStmtAttr"; static char *func = "SQLGetStmtAttr";
mylog("[[%s]] Handle=%u %d\n", func, StatementHandle, Attribute); mylog("[[%s]] Handle=%u %d\n", func, StatementHandle, Attribute);
SC_clear_error((StatementClass *) StatementHandle);
return PGAPI_GetStmtAttr(StatementHandle, Attribute, Value, return PGAPI_GetStmtAttr(StatementHandle, Attribute, Value,
BufferLength, StringLength); BufferLength, StringLength);
} }
...@@ -314,6 +322,7 @@ SQLSetConnectAttr(HDBC ConnectionHandle, ...@@ -314,6 +322,7 @@ SQLSetConnectAttr(HDBC ConnectionHandle,
ConnectionClass *conn = (ConnectionClass *) ConnectionHandle; ConnectionClass *conn = (ConnectionClass *) ConnectionHandle;
mylog("[[SQLSetConnectAttr]] %d\n", Attribute); mylog("[[SQLSetConnectAttr]] %d\n", Attribute);
CC_clear_error(conn);
return PGAPI_SetConnectAttr(ConnectionHandle, Attribute, Value, return PGAPI_SetConnectAttr(ConnectionHandle, Attribute, Value,
StringLength); StringLength);
} }
...@@ -396,6 +405,7 @@ SQLSetStmtAttr(HSTMT StatementHandle, ...@@ -396,6 +405,7 @@ SQLSetStmtAttr(HSTMT StatementHandle,
StatementClass *stmt = (StatementClass *) StatementHandle; StatementClass *stmt = (StatementClass *) StatementHandle;
mylog("[[%s]] Handle=%u %d,%u\n", func, StatementHandle, Attribute, Value); mylog("[[%s]] Handle=%u %d,%u\n", func, StatementHandle, Attribute, Value);
SC_clear_error(stmt);
return PGAPI_SetStmtAttr(StatementHandle, Attribute, Value, StringLength); return PGAPI_SetStmtAttr(StatementHandle, Attribute, Value, StringLength);
} }
...@@ -409,6 +419,7 @@ PGAPI_GetFunctions30(HDBC hdbc, UWORD fFunction, UWORD FAR * pfExists) ...@@ -409,6 +419,7 @@ PGAPI_GetFunctions30(HDBC hdbc, UWORD fFunction, UWORD FAR * pfExists)
ConnectionClass *conn = (ConnectionClass *) hdbc; ConnectionClass *conn = (ConnectionClass *) hdbc;
ConnInfo *ci = &(conn->connInfo); ConnInfo *ci = &(conn->connInfo);
CC_clear_error(conn);
if (fFunction != SQL_API_ODBC3_ALL_FUNCTIONS) if (fFunction != SQL_API_ODBC3_ALL_FUNCTIONS)
return SQL_ERROR; return SQL_ERROR;
memset(pfExists, 0, sizeof(UWORD) * SQL_API_ODBC3_ALL_FUNCTIONS_SIZE); memset(pfExists, 0, sizeof(UWORD) * SQL_API_ODBC3_ALL_FUNCTIONS_SIZE);
...@@ -497,12 +508,12 @@ PGAPI_GetFunctions30(HDBC hdbc, UWORD fFunction, UWORD FAR * pfExists) ...@@ -497,12 +508,12 @@ PGAPI_GetFunctions30(HDBC hdbc, UWORD fFunction, UWORD FAR * pfExists)
SQL_FUNC_ESET(pfExists, SQL_API_SQLENDTRAN); /* 1005 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLENDTRAN); /* 1005 */
SQL_FUNC_ESET(pfExists, SQL_API_SQLFREEHANDLE); /* 1006 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLFREEHANDLE); /* 1006 */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETCONNECTATTR); /* 1007 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLGETCONNECTATTR); /* 1007 */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDESCFIELD); /* 1008 */
if (ci->drivers.lie) if (ci->drivers.lie)
{ {
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDESCFIELD); /* 1008 not implemented yet */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDESCREC); /* 1009 not implemented yet */ SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDESCREC); /* 1009 not implemented yet */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDIAGFIELD); /* 1010 not implemented yet */
} }
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDIAGFIELD); /* 1010 minimal implementation */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDIAGREC); /* 1011 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLGETDIAGREC); /* 1011 */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETENVATTR); /* 1012 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLGETENVATTR); /* 1012 */
SQL_FUNC_ESET(pfExists, SQL_API_SQLGETSTMTATTR); /* 1014 */ SQL_FUNC_ESET(pfExists, SQL_API_SQLGETSTMTATTR); /* 1014 */
...@@ -525,72 +536,15 @@ RETCODE SQL_API ...@@ -525,72 +536,15 @@ RETCODE SQL_API
SQLBulkOperations(HSTMT hstmt, SQLSMALLINT operation) SQLBulkOperations(HSTMT hstmt, SQLSMALLINT operation)
{ {
static char *func = "SQLBulkOperations"; static char *func = "SQLBulkOperations";
StatementClass *stmt = (StatementClass *) hstmt;
#ifndef DRIVER_CURSOR_IMPLEMENT #ifndef DRIVER_CURSOR_IMPLEMENT
StatementClass *stmt = (StatementClass *) hstmt;
stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR; stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR;
stmt->errormsg = "driver must be compiled with the DRIVER_CURSOR_IMPLEMENT option"; stmt->errormsg = "driver must be compiled with the DRIVER_CURSOR_IMPLEMENT option";
SC_log_error(func, "", stmt); SC_log_error(func, "", stmt);
return SQL_ERROR; return SQL_ERROR;
#else #else
ARDFields *opts = SC_get_ARD(stmt); mylog("[[%s]] Handle=%u %d\n", func, hstmt, operation);
RETCODE ret; SC_clear_error((StatementClass *) hstmt);
UInt4 offset, bind_size = opts->bind_size, *bmark; return PGAPI_BulkOperations(hstmt, operation);
int i, processed;
ConnectionClass *conn;
BOOL auto_commit_needed = FALSE;
mylog("[[%s]] operation = %d\n", func, operation);
offset = opts->row_offset_ptr ? *opts->row_offset_ptr : 0;
switch (operation)
{
case SQL_ADD:
ret = PGAPI_SetPos(hstmt, 0, operation, SQL_LOCK_NO_CHANGE);
break;
default:
if (SQL_FETCH_BY_BOOKMARK != operation)
{
conn = SC_get_conn(stmt);
if (auto_commit_needed = CC_is_in_autocommit(conn), auto_commit_needed)
PGAPI_SetConnectOption(conn, SQL_AUTOCOMMIT,
SQL_AUTOCOMMIT_OFF);
}
if (bmark = (UInt4 *) opts->bookmark->buffer, !bmark)
{
stmt->errormsg = "bookmark isn't specified";
return SQL_ERROR;
}
bmark += (offset >> 4);
for (i = 0, processed = 0; i < opts->rowset_size; i++)
{
if (!opts->row_operation_ptr || SQL_ROW_PROCEED == opts->row_operation_ptr[i])
{
switch (operation)
{
case SQL_UPDATE_BY_BOOKMARK:
ret = SC_pos_update(stmt, (UWORD) i, *bmark);
break;
case SQL_DELETE_BY_BOOKMARK:
ret = SC_pos_delete(stmt, (UWORD) i, *bmark);
break;
case SQL_FETCH_BY_BOOKMARK:
ret = SC_pos_refresh(stmt, (UWORD) i, *bmark);
break;
}
processed++;
if (SQL_ERROR == ret)
break;
if (bind_size > 0)
bmark += (bind_size >> 2);
else
bmark++;
}
}
if (auto_commit_needed)
PGAPI_SetConnectOption(conn, SQL_AUTOCOMMIT, SQL_AUTOCOMMIT_ON);
if (SC_get_IRD(stmt)->rowsFetched)
*SC_get_IRD(stmt)->rowsFetched = processed;
break;
}
return ret;
#endif /* DRIVER_CURSOR_IMPLEMENT */ #endif /* DRIVER_CURSOR_IMPLEMENT */
} }
...@@ -30,6 +30,7 @@ RETCODE SQL_API SQLGetStmtAttrW(SQLHSTMT hstmt, ...@@ -30,6 +30,7 @@ RETCODE SQL_API SQLGetStmtAttrW(SQLHSTMT hstmt,
RETCODE ret; RETCODE ret;
mylog("[SQLGetStmtAttrW]"); mylog("[SQLGetStmtAttrW]");
SC_clear_error((StatementClass *) hstmt);
ret = PGAPI_GetStmtAttr(hstmt, fAttribute, rgbValue, ret = PGAPI_GetStmtAttr(hstmt, fAttribute, rgbValue,
cbValueMax, pcbValue); cbValueMax, pcbValue);
return ret; return ret;
...@@ -43,6 +44,7 @@ RETCODE SQL_API SQLSetStmtAttrW(SQLHSTMT hstmt, ...@@ -43,6 +44,7 @@ RETCODE SQL_API SQLSetStmtAttrW(SQLHSTMT hstmt,
RETCODE ret; RETCODE ret;
mylog("[SQLSetStmtAttrW]"); mylog("[SQLSetStmtAttrW]");
SC_clear_error((StatementClass *) hstmt);
ret = PGAPI_SetStmtAttr(hstmt, fAttribute, rgbValue, ret = PGAPI_SetStmtAttr(hstmt, fAttribute, rgbValue,
cbValueMax); cbValueMax);
return ret; return ret;
...@@ -57,6 +59,7 @@ RETCODE SQL_API SQLGetConnectAttrW(HDBC hdbc, ...@@ -57,6 +59,7 @@ RETCODE SQL_API SQLGetConnectAttrW(HDBC hdbc,
RETCODE ret; RETCODE ret;
mylog("[SQLGetConnectAttrW]"); mylog("[SQLGetConnectAttrW]");
CC_clear_error((ConnectionClass *) hdbc);
ret = PGAPI_GetConnectAttr(hdbc, fAttribute, rgbValue, ret = PGAPI_GetConnectAttr(hdbc, fAttribute, rgbValue,
cbValueMax, pcbValue); cbValueMax, pcbValue);
return ret; return ret;
...@@ -70,6 +73,7 @@ RETCODE SQL_API SQLSetConnectAttrW(HDBC hdbc, ...@@ -70,6 +73,7 @@ RETCODE SQL_API SQLSetConnectAttrW(HDBC hdbc,
RETCODE ret; RETCODE ret;
mylog("[SQLSetConnectAttrW]"); mylog("[SQLSetConnectAttrW]");
CC_clear_error((ConnectionClass *) hdbc);
ret = PGAPI_SetConnectAttr(hdbc, fAttribute, rgbValue, ret = PGAPI_SetConnectAttr(hdbc, fAttribute, rgbValue,
cbValue); cbValue);
return ret; return ret;
...@@ -229,6 +233,7 @@ RETCODE SQL_API SQLColAttributeW( ...@@ -229,6 +233,7 @@ RETCODE SQL_API SQLColAttributeW(
char *rgbD = NULL; char *rgbD = NULL;
mylog("[SQLColAttributeW]"); mylog("[SQLColAttributeW]");
SC_clear_error((StatementClass *) hstmt);
switch (fDescType) switch (fDescType)
{ {
case SQL_DESC_BASE_COLUMN_NAME: case SQL_DESC_BASE_COLUMN_NAME:
......
...@@ -95,9 +95,13 @@ set_statement_option(ConnectionClass *conn, ...@@ -95,9 +95,13 @@ set_statement_option(ConnectionClass *conn,
; ;
else if (SQL_CURSOR_STATIC == vParam) else if (SQL_CURSOR_STATIC == vParam)
setval = vParam; setval = vParam;
/** else if (SQL_CURSOR_KEYSET_DRIVEN == vParam && ci->updatable) else if (SQL_CURSOR_KEYSET_DRIVEN == vParam)
setval = vParam; **/ {
if (ci->updatable_cursors)
setval = vParam;
else
setval = SQL_CURSOR_STATIC; /* at least scrollable */
}
if (conn) if (conn)
conn->stmtOptions.cursor_type = setval; conn->stmtOptions.cursor_type = setval;
else if (stmt) else if (stmt)
...@@ -372,6 +376,60 @@ PGAPI_SetConnectOption( ...@@ -372,6 +376,60 @@ PGAPI_SetConnectOption(
break; break;
case SQL_TXN_ISOLATION: /* ignored */ case SQL_TXN_ISOLATION: /* ignored */
retval = SQL_SUCCESS;
if (CC_is_in_trans(conn))
{
conn->errormsg = "Cannot switch isolation level while a transaction is in progress";
conn->errornumber = CONN_TRANSACT_IN_PROGRES;
CC_log_error(func, "", conn);
return SQL_ERROR;
}
if (conn->isolation == vParam)
break;
switch (vParam)
{
case SQL_TXN_SERIALIZABLE:
if (PG_VERSION_GE(conn, 6.5) &&
PG_VERSION_LE(conn, 7.0))
retval = SQL_ERROR;
break;
case SQL_TXN_READ_COMMITTED:
if (PG_VERSION_LT(conn, 6.5))
retval = SQL_ERROR;
break;
default:
retval = SQL_ERROR;
}
if (SQL_ERROR == retval)
{
conn->errornumber = CONN_INVALID_ARGUMENT_NO;
conn->errormsg = "Illegal parameter value for SQL_TXN_ISOLATION";
CC_log_error(func, "", conn);
return SQL_ERROR;
}
else
{
char *query;
QResultClass *res;
if (vParam == SQL_TXN_SERIALIZABLE)
query = "SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL SERIALIZABLE";
else
query = "SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL READ COMMITTED";
res = CC_send_query(conn, query, NULL, 0);
if (!res || !QR_command_maybe_successful(res))
retval = SQL_ERROR;
else
conn->isolation = vParam;
if (res)
QR_Destructor(res);
if (SQL_ERROR == retval)
{
conn->errornumber = STMT_EXEC_ERROR;
conn->errormsg = "ISOLATION change request to the server error";
return SQL_ERROR;
}
}
break; break;
/* These options should be handled by driver manager */ /* These options should be handled by driver manager */
...@@ -476,8 +534,8 @@ PGAPI_GetConnectOption( ...@@ -476,8 +534,8 @@ PGAPI_GetConnectOption(
*((UDWORD *) pvParam) = (UDWORD) NULL; *((UDWORD *) pvParam) = (UDWORD) NULL;
break; break;
case SQL_TXN_ISOLATION: /* NOT SUPPORTED */ case SQL_TXN_ISOLATION:
*((UDWORD *) pvParam) = SQL_TXN_READ_COMMITTED; *((UDWORD *) pvParam) = conn->isolation;
break; break;
/* These options should be handled by driver manager */ /* These options should be handled by driver manager */
...@@ -567,7 +625,7 @@ PGAPI_GetStmtOption( ...@@ -567,7 +625,7 @@ PGAPI_GetStmtOption(
{ {
/* make sure we're positioned on a valid row */ /* make sure we're positioned on a valid row */
if ((stmt->currTuple < 0) || if ((stmt->currTuple < 0) ||
(stmt->currTuple >= QR_get_num_tuples(res))) (stmt->currTuple >= QR_get_num_backend_tuples(res)))
{ {
stmt->errormsg = "Not positioned on a valid row."; stmt->errormsg = "Not positioned on a valid row.";
stmt->errornumber = STMT_INVALID_CURSOR_STATE_ERROR; stmt->errornumber = STMT_INVALID_CURSOR_STATE_ERROR;
......
...@@ -50,6 +50,29 @@ char *getNextToken(char *s, char *token, int smax, char *delim, char *quote, ...@@ -50,6 +50,29 @@ char *getNextToken(char *s, char *token, int smax, char *delim, char *quote,
void getColInfo(COL_INFO *col_info, FIELD_INFO *fi, int k); void getColInfo(COL_INFO *col_info, FIELD_INFO *fi, int k);
char searchColInfo(COL_INFO *col_info, FIELD_INFO *fi); char searchColInfo(COL_INFO *col_info, FIELD_INFO *fi);
Int4 FI_precision(const FIELD_INFO *fi)
{
if (!fi) return -1;
switch (fi->type)
{
case PG_TYPE_NUMERIC:
return fi->column_size;
case PG_TYPE_DATETIME:
case PG_TYPE_TIMESTAMP_NO_TMZONE:
return fi->decimal_digits;
}
return 0;
}
Int4 FI_scale(const FIELD_INFO *fi)
{
if (!fi) return -1;
switch (fi->type)
{
case PG_TYPE_NUMERIC:
return fi->decimal_digits;
}
return 0;
}
char * char *
getNextToken( getNextToken(
...@@ -265,7 +288,7 @@ searchColInfo(COL_INFO *col_info, FIELD_INFO *fi) ...@@ -265,7 +288,7 @@ searchColInfo(COL_INFO *col_info, FIELD_INFO *fi)
cmp; cmp;
char *col; char *col;
for (k = 0; k < QR_get_num_tuples(col_info->result); k++) for (k = 0; k < QR_get_num_backend_tuples(col_info->result); k++)
{ {
col = QR_get_value_manual(col_info->result, k, 3); col = QR_get_value_manual(col_info->result, k, 3);
if (fi->dquote) if (fi->dquote)
...@@ -291,7 +314,7 @@ char ...@@ -291,7 +314,7 @@ char
parse_statement(StatementClass *stmt) parse_statement(StatementClass *stmt)
{ {
static char *func = "parse_statement"; static char *func = "parse_statement";
char token[256]; char token[256], stoken[256];
char delim, char delim,
quote, quote,
dquote, dquote,
...@@ -315,7 +338,7 @@ parse_statement(StatementClass *stmt) ...@@ -315,7 +338,7 @@ parse_statement(StatementClass *stmt)
i, i,
k = 0, k = 0,
n, n,
blevel = 0; blevel = 0, old_blevel, subqlevel = 0;
FIELD_INFO **fi; FIELD_INFO **fi;
TABLE_INFO **ti; TABLE_INFO **ti;
char parse; char parse;
...@@ -347,42 +370,43 @@ parse_statement(StatementClass *stmt) ...@@ -347,42 +370,43 @@ parse_statement(StatementClass *stmt)
mylog("unquoted=%d, quote=%d, dquote=%d, numeric=%d, delim='%c', token='%s', ptr='%s'\n", unquoted, quote, dquote, numeric, delim, token, ptr); mylog("unquoted=%d, quote=%d, dquote=%d, numeric=%d, delim='%c', token='%s', ptr='%s'\n", unquoted, quote, dquote, numeric, delim, token, ptr);
if (in_select && unquoted && blevel == 0) old_blevel = blevel;
if (unquoted && blevel == 0)
{ {
if (!stricmp(token, "distinct")) if (in_select)
{ {
in_distinct = TRUE; if (!stricmp(token, "distinct"))
updatable = FALSE; {
in_distinct = TRUE;
updatable = FALSE;
mylog("DISTINCT\n"); mylog("DISTINCT\n");
continue; continue;
} }
if (!stricmp(token, "into")) else if (!stricmp(token, "into"))
{
in_select = FALSE;
mylog("INTO\n");
stmt->statement_type = STMT_TYPE_CREATE;
stmt->parse_status = STMT_PARSE_FATAL;
return FALSE;
}
if (!stricmp(token, "from"))
{
in_select = FALSE;
in_from = TRUE;
if (stmt->from_pos < 0 &&
(!strnicmp(pptr, "from", 4)))
{ {
mylog("First "); in_select = FALSE;
stmt->from_pos = pptr - stmt->statement; mylog("INTO\n");
stmt->statement_type = STMT_TYPE_CREATE;
stmt->parse_status = STMT_PARSE_FATAL;
return FALSE;
} }
else if (!stricmp(token, "from"))
{
in_select = FALSE;
in_from = TRUE;
if (stmt->from_pos < 0 &&
(!strnicmp(pptr, "from", 4)))
{
mylog("First ");
stmt->from_pos = pptr - stmt->statement;
}
mylog("FROM\n"); mylog("FROM\n");
continue; continue;
} }
} /* in_select && unquoted && blevel == 0 */ } /* in_select && unquoted && blevel == 0 */
if (unquoted && blevel == 0) else if ((!stricmp(token, "where") ||
{
if ((!stricmp(token, "where") ||
!stricmp(token, "union") || !stricmp(token, "union") ||
!stricmp(token, "intersect") || !stricmp(token, "intersect") ||
!stricmp(token, "except") || !stricmp(token, "except") ||
...@@ -390,7 +414,6 @@ parse_statement(StatementClass *stmt) ...@@ -390,7 +414,6 @@ parse_statement(StatementClass *stmt)
!stricmp(token, "group") || !stricmp(token, "group") ||
!stricmp(token, "having"))) !stricmp(token, "having")))
{ {
in_select = FALSE;
in_from = FALSE; in_from = FALSE;
in_where = TRUE; in_where = TRUE;
...@@ -406,54 +429,82 @@ parse_statement(StatementClass *stmt) ...@@ -406,54 +429,82 @@ parse_statement(StatementClass *stmt)
continue; continue;
} }
} /* unquoted && blevel == 0 */ } /* unquoted && blevel == 0 */
if (in_select && (in_expr || in_func)) /* check the change of blevel etc */
if (unquoted)
{ {
/* just eat the expression */ if (!stricmp(token, "select"))
mylog("in_expr=%d or func=%d\n", in_expr, in_func);
if (unquoted)
{ {
if (token[0] == '(') stoken[0] = '\0';
if (0 == blevel)
{ {
blevel++; in_select = TRUE;
mylog("blevel++ = %d\n", blevel); mylog("SELECT\n");
continue;
} }
else if (token[0] == ')') else
{ {
blevel--; mylog("SUBSELECT\n");
mylog("blevel-- = %d\n", blevel); if (0 == subqlevel)
subqlevel = blevel;
} }
} }
if (blevel == 0) else if (token[0] == '(')
{ {
if (delim == ',') blevel++;
mylog("blevel++ = %d\n", blevel);
/* aggregate function ? */
if (stoken[0] && updatable && 0 == subqlevel)
{ {
mylog("**** Got comma in_expr/func\n"); if (stricmp(stoken, "count") == 0 ||
in_func = FALSE; stricmp(stoken, "sum") == 0 ||
in_expr = FALSE; stricmp(stoken, "avg") == 0 ||
in_field = FALSE; stricmp(stoken, "max") == 0 ||
} stricmp(stoken, "min") == 0 ||
else if (unquoted && !stricmp(token, "as")) stricmp(stoken, "variance") == 0 ||
{ stricmp(stoken, "stddev") == 0)
mylog("got AS in_expr\n"); updatable = FALSE;
in_func = FALSE;
in_expr = FALSE;
in_as = TRUE;
in_field = TRUE;
} }
} }
continue; else if (token[0] == ')')
} /* in_select && (in_expr || in_func) */ {
blevel--;
if (unquoted && !stricmp(token, "select")) mylog("blevel-- = %d\n", blevel);
{ if (blevel < subqlevel)
in_select = TRUE; subqlevel = 0;
}
mylog("SELECT\n"); if (blevel >= old_blevel && ',' != delim)
continue; strcpy(stoken, token);
else
stoken[0] = '\0';
} }
if (in_select) if (in_select)
{ {
if (in_expr || in_func)
{
/* just eat the expression */
mylog("in_expr=%d or func=%d\n", in_expr, in_func);
if (blevel == 0)
{
if (delim == ',')
{
mylog("**** Got comma in_expr/func\n");
in_func = FALSE;
in_expr = FALSE;
in_field = FALSE;
}
else if (unquoted && !stricmp(token, "as"))
{
mylog("got AS in_expr\n");
in_func = FALSE;
in_expr = FALSE;
in_as = TRUE;
in_field = TRUE;
}
}
continue;
} /* (in_expr || in_func) && in_select */
if (in_distinct) if (in_distinct)
{ {
mylog("in distinct\n"); mylog("in distinct\n");
...@@ -515,12 +566,11 @@ parse_statement(StatementClass *stmt) ...@@ -515,12 +566,11 @@ parse_statement(StatementClass *stmt)
mylog("**** got numeric: nfld = %d\n", irdflds->nfields); mylog("**** got numeric: nfld = %d\n", irdflds->nfields);
fi[irdflds->nfields]->numeric = TRUE; fi[irdflds->nfields]->numeric = TRUE;
} }
else if (token[0] == '(') else if (0 == old_blevel && blevel > 0)
{ /* expression */ { /* expression */
mylog("got EXPRESSION\n"); mylog("got EXPRESSION\n");
fi[irdflds->nfields++]->expr = TRUE; fi[irdflds->nfields++]->expr = TRUE;
in_expr = TRUE; in_expr = TRUE;
blevel = 1;
continue; continue;
} }
else else
...@@ -579,11 +629,10 @@ parse_statement(StatementClass *stmt) ...@@ -579,11 +629,10 @@ parse_statement(StatementClass *stmt)
} }
/* Function */ /* Function */
if (token[0] == '(') if (0 == old_blevel && blevel > 0)
{ {
in_dot = FALSE; in_dot = FALSE;
in_func = TRUE; in_func = TRUE;
blevel = 1;
fi[irdflds->nfields - 1]->func = TRUE; fi[irdflds->nfields - 1]->func = TRUE;
/* /*
...@@ -654,6 +703,7 @@ parse_statement(StatementClass *stmt) ...@@ -654,6 +703,7 @@ parse_statement(StatementClass *stmt)
ti[stmt->ntab]->schema[0] = '\0'; ti[stmt->ntab]->schema[0] = '\0';
ti[stmt->ntab]->alias[0] = '\0'; ti[stmt->ntab]->alias[0] = '\0';
ti[stmt->ntab]->updatable = 1;
strcpy(ti[stmt->ntab]->name, token); strcpy(ti[stmt->ntab]->name, token);
if (!dquote) if (!dquote)
...@@ -845,6 +895,37 @@ parse_statement(StatementClass *stmt) ...@@ -845,6 +895,37 @@ parse_statement(StatementClass *stmt)
col_stmt = (StatementClass *) hcol_stmt; col_stmt = (StatementClass *) hcol_stmt;
col_stmt->internal = TRUE; col_stmt->internal = TRUE;
if (!ti[i]->schema[0] && conn->schema_support)
{
QResultClass *res;
BOOL tblFound = FALSE;
/* Unfortunately CURRENT_SCHEMA doesn't exist
* in PostgreSQL and we have to check as follows.
*/
sprintf(token, "select nspname from pg_namespace n, pg_class c"
" where c.relnamespace=n.oid and c.oid='%s'::regclass", ti[i]->name);
res = CC_send_query(conn, token, NULL, CLEAR_RESULT_ON_ABORT);
if (res)
{
if (QR_get_num_total_tuples(res) == 1)
{
tblFound = TRUE;
strcpy(ti[i]->schema, QR_get_value_backend_row(res, 0, 0));
}
QR_Destructor(res);
}
else
CC_abort(conn);
if (!tblFound)
{
stmt->parse_status = STMT_PARSE_FATAL;
stmt->errornumber = STMT_EXEC_ERROR;
stmt->errormsg = "Table not found";
stmt->updatable = FALSE;
return FALSE;
}
}
result = PGAPI_Columns(hcol_stmt, "", 0, ti[i]->schema, result = PGAPI_Columns(hcol_stmt, "", 0, ti[i]->schema,
SQL_NTS, ti[i]->name, SQL_NTS, "", 0, PODBC_NOT_SEARCH_PATTERN); SQL_NTS, ti[i]->name, SQL_NTS, "", 0, PODBC_NOT_SEARCH_PATTERN);
...@@ -907,6 +988,8 @@ parse_statement(StatementClass *stmt) ...@@ -907,6 +988,8 @@ parse_statement(StatementClass *stmt)
/* /*
* Now resolve the fields to point to column info * Now resolve the fields to point to column info
*/ */
if (updatable && 1 == stmt->ntab)
updatable = stmt->ti[0]->updatable;
for (i = 0; i < (int) irdflds->nfields;) for (i = 0; i < (int) irdflds->nfields;)
{ {
fi[i]->updatable = updatable; fi[i]->updatable = updatable;
...@@ -934,14 +1017,14 @@ parse_statement(StatementClass *stmt) ...@@ -934,14 +1017,14 @@ parse_statement(StatementClass *stmt)
if (fi[i]->ti) /* The star represents only the qualified if (fi[i]->ti) /* The star represents only the qualified
* table */ * table */
total_cols = QR_get_num_tuples(fi[i]->ti->col_info->result); total_cols = QR_get_num_backend_tuples(fi[i]->ti->col_info->result);
else else
{ /* The star represents all tables */ { /* The star represents all tables */
/* Calculate the total number of columns after expansion */ /* Calculate the total number of columns after expansion */
for (k = 0; k < stmt->ntab; k++) for (k = 0; k < stmt->ntab; k++)
total_cols += QR_get_num_tuples(ti[k]->col_info->result); total_cols += QR_get_num_backend_tuples(ti[k]->col_info->result);
} }
increased_cols = total_cols - 1; increased_cols = total_cols - 1;
...@@ -988,7 +1071,7 @@ parse_statement(StatementClass *stmt) ...@@ -988,7 +1071,7 @@ parse_statement(StatementClass *stmt)
{ {
TABLE_INFO *the_ti = do_all_tables ? ti[k] : fi[i]->ti; TABLE_INFO *the_ti = do_all_tables ? ti[k] : fi[i]->ti;
cols = QR_get_num_tuples(the_ti->col_info->result); cols = QR_get_num_backend_tuples(the_ti->col_info->result);
for (n = 0; n < cols; n++) for (n = 0; n < cols; n++)
{ {
......
This diff is collapsed.
...@@ -172,7 +172,8 @@ RETCODE SQL_API PGAPI_ExtendedFetch( ...@@ -172,7 +172,8 @@ RETCODE SQL_API PGAPI_ExtendedFetch(
SQLUSMALLINT fFetchType, SQLUSMALLINT fFetchType,
SQLINTEGER irow, SQLINTEGER irow,
SQLUINTEGER *pcrow, SQLUINTEGER *pcrow,
SQLUSMALLINT *rgfRowStatus); SQLUSMALLINT *rgfRowStatus,
SQLINTEGER FetchOffset);
RETCODE SQL_API PGAPI_ForeignKeys( RETCODE SQL_API PGAPI_ForeignKeys(
HSTMT hstmt, HSTMT hstmt,
SQLCHAR *szPkCatalogName, SQLCHAR *szPkCatalogName,
...@@ -281,6 +282,8 @@ RETCODE SQL_API PGAPI_SetConnectAttr(HDBC ConnectionHandle, ...@@ -281,6 +282,8 @@ RETCODE SQL_API PGAPI_SetConnectAttr(HDBC ConnectionHandle,
RETCODE SQL_API PGAPI_SetStmtAttr(HSTMT StatementHandle, RETCODE SQL_API PGAPI_SetStmtAttr(HSTMT StatementHandle,
SQLINTEGER Attribute, PTR Value, SQLINTEGER Attribute, PTR Value,
SQLINTEGER StringLength); SQLINTEGER StringLength);
RETCODE SQL_API PGAPI_BulkOperations(HSTMT StatementHandle,
SQLSMALLINT operation);
RETCODE SQL_API PGAPI_SetDescField(SQLHDESC DescriptorHandle, RETCODE SQL_API PGAPI_SetDescField(SQLHDESC DescriptorHandle,
SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier,
PTR Value, SQLINTEGER BufferLength); PTR Value, SQLINTEGER BufferLength);
......
...@@ -101,7 +101,8 @@ Int2 sqlTypes[] = { ...@@ -101,7 +101,8 @@ Int2 sqlTypes[] = {
}; };
#if (ODBCVER >= 0x0300) && defined(OBDCINT64) #if (ODBCVER >= 0x0300) && defined(OBDCINT64)
#define ALLOWED_C_BIGINT SQL_C_SBIGINT /* #define ALLOWED_C_BIGINT SQL_C_SBIGINT */
#define ALLOWED_C_BIGINT SQL_C_CHAR /* Delphi should be either ? */
#else #else
#define ALLOWED_C_BIGINT SQL_C_CHAR #define ALLOWED_C_BIGINT SQL_C_CHAR
#endif #endif
...@@ -286,11 +287,13 @@ pgtype_to_concise_type(StatementClass *stmt, Int4 type) ...@@ -286,11 +287,13 @@ pgtype_to_concise_type(StatementClass *stmt, Int4 type)
/* Change this to SQL_BIGINT for ODBC v3 bjm 2001-01-23 */ /* Change this to SQL_BIGINT for ODBC v3 bjm 2001-01-23 */
case PG_TYPE_INT8: case PG_TYPE_INT8:
if (conn->ms_jet)
return SQL_NUMERIC; /* maybe a little better than SQL_VARCHAR */
#if (ODBCVER >= 0x0300) #if (ODBCVER >= 0x0300)
if (!conn->ms_jet) return SQL_BIGINT;
return SQL_BIGINT; #else
#endif /* ODBCVER */
return SQL_VARCHAR; return SQL_VARCHAR;
#endif /* ODBCVER */
case PG_TYPE_NUMERIC: case PG_TYPE_NUMERIC:
return SQL_NUMERIC; return SQL_NUMERIC;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* *
* Comments: See "notice.txt" for copyright and license information. * Comments: See "notice.txt" for copyright and license information.
* *
* $Id: psqlodbc.h,v 1.65 2002/04/15 02:46:00 inoue Exp $ * $Id: psqlodbc.h,v 1.66 2002/05/22 05:51:03 inoue Exp $
* *
*/ */
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
#include <stdio.h> /* for FILE* pointers: see GLOBAL_VALUES */ #include <stdio.h> /* for FILE* pointers: see GLOBAL_VALUES */
#include "version.h"
/* Must come before sql.h */ /* Must come before sql.h */
#ifndef ODBCVER #ifndef ODBCVER
#define ODBCVER 0x0250 #define ODBCVER 0x0250
...@@ -87,8 +89,6 @@ typedef UInt4 Oid; ...@@ -87,8 +89,6 @@ typedef UInt4 Oid;
#define DBMS_NAME "PostgreSQL" #define DBMS_NAME "PostgreSQL"
#endif /* ODBCVER */ #endif /* ODBCVER */
#define POSTGRESDRIVERVERSION "07.02.0001"
#ifdef WIN32 #ifdef WIN32
#if (ODBCVER >= 0x0300) #if (ODBCVER >= 0x0300)
#ifdef UNICODE_SUPPORT #ifdef UNICODE_SUPPORT
......
//Microsoft Developer Studio generated resource script. //Microsoft Developer Studio generated resource script.
// //
#include "resource.h" #include "resource.h"
#include "version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
...@@ -366,8 +367,8 @@ END ...@@ -366,8 +367,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 7,2,0,01 FILEVERSION PG_DRVFILE_VERSION
PRODUCTVERSION 7,2,0,01 PRODUCTVERSION PG_DRVFILE_VERSION
FILEFLAGSMASK 0x3L FILEFLAGSMASK 0x3L
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
...@@ -389,14 +390,14 @@ BEGIN ...@@ -389,14 +390,14 @@ BEGIN
VALUE "CompanyName", "Insight Distribution Systems\0" VALUE "CompanyName", "Insight Distribution Systems\0"
#endif #endif
VALUE "FileDescription", "PostgreSQL Driver\0" VALUE "FileDescription", "PostgreSQL Driver\0"
VALUE "FileVersion", " 07.02.0001\0" VALUE "FileVersion", POSTGRES_RESOURCE_VERSION
VALUE "InternalName", "psqlodbc\0" VALUE "InternalName", "psqlodbc\0"
VALUE "LegalCopyright", "\0" VALUE "LegalCopyright", "\0"
VALUE "LegalTrademarks", "ODBC(TM) is a trademark of Microsoft Corporation. Microsoft is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0" VALUE "LegalTrademarks", "ODBC(TM) is a trademark of Microsoft Corporation. Microsoft is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
VALUE "OriginalFilename", "psqlodbc.dll\0" VALUE "OriginalFilename", "psqlodbc.dll\0"
VALUE "PrivateBuild", "\0" VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Microsoft Open Database Connectivity\0" VALUE "ProductName", "Microsoft Open Database Connectivity\0"
VALUE "ProductVersion", " 07.02.0001\0" VALUE "ProductVersion", POSTGRES_RESOURCE_VERSION
VALUE "SpecialBuild", "\0" VALUE "SpecialBuild", "\0"
END END
END END
......
This diff is collapsed.
...@@ -48,15 +48,18 @@ struct QResultClass_ ...@@ -48,15 +48,18 @@ struct QResultClass_
QResultClass *next; /* the following result class */ QResultClass *next; /* the following result class */
/* Stuff for declare/fetch tuples */ /* Stuff for declare/fetch tuples */
int count_allocated; /* m(re)alloced count */ int num_total_rows; /* total count of rows read in */
int count_backend_allocated;/* m(re)alloced count */
int count_keyset_allocated; /* m(re)alloced count */
int num_backend_rows; /* count of tuples kept in backend_tuples member */
int fetch_count; /* logical rows read so far */ int fetch_count; /* logical rows read so far */
int fcount; /* actual rows read in the fetch */
int currTuple; int currTuple;
int base; int base;
int num_fields; /* number of fields in the result */ int num_fields; /* number of fields in the result */
int cache_size; int cache_size;
int rowset_size; int rowset_size;
Int4 recent_processed_row_count;
QueryResultCode status; QueryResultCode status;
...@@ -77,6 +80,9 @@ struct QResultClass_ ...@@ -77,6 +80,9 @@ struct QResultClass_
UInt2 rb_alloc; /* count of allocated rollback info */ UInt2 rb_alloc; /* count of allocated rollback info */
UInt2 rb_count; /* count of rollback info */ UInt2 rb_count; /* count of rollback info */
Rollback *rollback; Rollback *rollback;
UInt2 dl_alloc; /* count of allocated deleted info */
UInt2 dl_count; /* count of deleted info */
UInt4 *deleted;
}; };
#define QR_get_fields(self) (self->fields) #define QR_get_fields(self) (self->fields)
...@@ -96,7 +102,8 @@ struct QResultClass_ ...@@ -96,7 +102,8 @@ struct QResultClass_
#define QR_get_field_type(self, fieldno_) (CI_get_oid(self->fields, fieldno_)) #define QR_get_field_type(self, fieldno_) (CI_get_oid(self->fields, fieldno_))
/* These functions are used only for manual result sets */ /* These functions are used only for manual result sets */
#define QR_get_num_tuples(self) (self->manual_tuples ? TL_get_num_tuples(self->manual_tuples) : self->fcount) #define QR_get_num_total_tuples(self) (self->manual_tuples ? TL_get_num_tuples(self->manual_tuples) : self->num_total_rows)
#define QR_get_num_backend_tuples(self) (self->manual_tuples ? TL_get_num_tuples(self->manual_tuples) : self->num_backend_rows)
#define QR_add_tuple(self, new_tuple) (TL_add_tuple(self->manual_tuples, new_tuple)) #define QR_add_tuple(self, new_tuple) (TL_add_tuple(self->manual_tuples, new_tuple))
#define QR_set_field_info(self, field_num, name, adtid, adtsize) (CI_set_field_info(self->fields, field_num, name, adtid, adtsize, -1)) #define QR_set_field_info(self, field_num, name, adtid, adtsize) (CI_set_field_info(self->fields, field_num, name, adtid, adtsize, -1))
......
This diff is collapsed.
...@@ -272,7 +272,7 @@ SC_Constructor(void) ...@@ -272,7 +272,7 @@ SC_Constructor(void)
rv->rowset_start = -1; rv->rowset_start = -1;
rv->current_col = -1; rv->current_col = -1;
rv->bind_row = 0; rv->bind_row = 0;
rv->last_fetch_count = 0; rv->last_fetch_count = rv->last_fetch_count_include_ommitted = 0;
rv->save_rowset_size = -1; rv->save_rowset_size = -1;
rv->data_at_exec = -1; rv->data_at_exec = -1;
...@@ -302,6 +302,7 @@ SC_Constructor(void) ...@@ -302,6 +302,7 @@ SC_Constructor(void)
rv->miscinfo = 0; rv->miscinfo = 0;
rv->updatable = FALSE; rv->updatable = FALSE;
rv->error_recsize = -1; rv->error_recsize = -1;
rv->diag_row_count = 0;
} }
return rv; return rv;
} }
...@@ -533,7 +534,7 @@ SC_recycle_statement(StatementClass *self) ...@@ -533,7 +534,7 @@ SC_recycle_statement(StatementClass *self)
self->rowset_start = -1; self->rowset_start = -1;
self->current_col = -1; self->current_col = -1;
self->bind_row = 0; self->bind_row = 0;
self->last_fetch_count = 0; self->last_fetch_count = self->last_fetch_count_include_ommitted = 0;
self->errormsg = NULL; self->errormsg = NULL;
self->errornumber = 0; self->errornumber = 0;
...@@ -619,6 +620,7 @@ SC_clear_error(StatementClass *self) ...@@ -619,6 +620,7 @@ SC_clear_error(StatementClass *self)
self->errormsg_created = FALSE; self->errormsg_created = FALSE;
self->errorpos = 0; self->errorpos = 0;
self->error_recsize = -1; self->error_recsize = -1;
self->diag_row_count = 0;
} }
...@@ -733,21 +735,21 @@ SC_fetch(StatementClass *self) ...@@ -733,21 +735,21 @@ SC_fetch(StatementClass *self)
/* TupleField *tupleField; */ /* TupleField *tupleField; */
ConnInfo *ci = &(SC_get_conn(self)->connInfo); ConnInfo *ci = &(SC_get_conn(self)->connInfo);
self->last_fetch_count = 0; self->last_fetch_count = self->last_fetch_count_include_ommitted = 0;
coli = QR_get_fields(res); /* the column info */ coli = QR_get_fields(res); /* the column info */
mylog("manual_result = %d, use_declarefetch = %d\n", self->manual_result, ci->drivers.use_declarefetch); mylog("manual_result = %d, use_declarefetch = %d\n", self->manual_result, ci->drivers.use_declarefetch);
if (self->manual_result || !SC_is_fetchcursor(self)) if (self->manual_result || !SC_is_fetchcursor(self))
{ {
if (self->currTuple >= QR_get_num_tuples(res) - 1 || if (self->currTuple >= QR_get_num_total_tuples(res) - 1 ||
(self->options.maxRows > 0 && self->currTuple == self->options.maxRows - 1)) (self->options.maxRows > 0 && self->currTuple == self->options.maxRows - 1))
{ {
/* /*
* if at the end of the tuples, return "no data found" and set * if at the end of the tuples, return "no data found" and set
* the cursor past the end of the result set * the cursor past the end of the result set
*/ */
self->currTuple = QR_get_num_tuples(res); self->currTuple = QR_get_num_total_tuples(res);
return SQL_NO_DATA_FOUND; return SQL_NO_DATA_FOUND;
} }
...@@ -774,11 +776,23 @@ SC_fetch(StatementClass *self) ...@@ -774,11 +776,23 @@ SC_fetch(StatementClass *self)
return SQL_ERROR; return SQL_ERROR;
} }
} }
#ifdef DRIVER_CURSOR_IMPLEMENT
if (res->haskeyset)
{
UWORD pstatus = res->keyset[self->currTuple].status;
if (0 != (pstatus & (CURS_SELF_DELETING | CURS_SELF_DELETED)))
return SQL_SUCCESS_WITH_INFO;
if (SQL_ROW_DELETED != (pstatus & KEYSET_INFO_PUBLIC) &&
0 != (pstatus & CURS_OTHER_DELETED))
return SQL_SUCCESS_WITH_INFO;
}
#endif /* DRIVER_CURSOR_IMPLEMENT */
num_cols = QR_NumResultCols(res); num_cols = QR_NumResultCols(res);
result = SQL_SUCCESS; result = SQL_SUCCESS;
self->last_fetch_count = 1; self->last_fetch_count++;
self->last_fetch_count_include_ommitted++;
opts = SC_get_ARD(self); opts = SC_get_ARD(self);
/* /*
...@@ -830,7 +844,12 @@ SC_fetch(StatementClass *self) ...@@ -830,7 +844,12 @@ SC_fetch(StatementClass *self)
else if (SC_is_fetchcursor(self)) else if (SC_is_fetchcursor(self))
value = QR_get_value_backend(res, lf); value = QR_get_value_backend(res, lf);
else else
value = QR_get_value_backend_row(res, self->currTuple, lf); {
int curt = res->base;
if (self->rowset_start >= 0)
curt += (self->currTuple - self->rowset_start);
value = QR_get_value_backend_row(res, curt, lf);
}
mylog("value = '%s'\n", (value == NULL) ? "<NULL>" : value); mylog("value = '%s'\n", (value == NULL) ? "<NULL>" : value);
...@@ -1152,7 +1171,7 @@ SC_log_error(const char *func, const char *desc, const StatementClass *self) ...@@ -1152,7 +1171,7 @@ SC_log_error(const char *func, const char *desc, const StatementClass *self)
if (res) if (res)
{ {
qlog(" fields=%u, manual_tuples=%u, backend_tuples=%u, tupleField=%d, conn=%u\n", res->fields, res->manual_tuples, res->backend_tuples, res->tupleField, res->conn); qlog(" fields=%u, manual_tuples=%u, backend_tuples=%u, tupleField=%d, conn=%u\n", res->fields, res->manual_tuples, res->backend_tuples, res->tupleField, res->conn);
qlog(" fetch_count=%d, fcount=%d, num_fields=%d, cursor='%s'\n", res->fetch_count, res->fcount, res->num_fields, nullcheck(res->cursor)); qlog(" fetch_count=%d, num_total_rows=%d, num_fields=%d, cursor='%s'\n", res->fetch_count, res->num_total_rows, res->num_fields, nullcheck(res->cursor));
qlog(" message='%s', command='%s', notice='%s'\n", nullcheck(res->message), nullcheck(res->command), nullcheck(res->notice)); qlog(" message='%s', command='%s', notice='%s'\n", nullcheck(res->message), nullcheck(res->command), nullcheck(res->notice));
qlog(" status=%d, inTuples=%d\n", res->status, res->inTuples); qlog(" status=%d, inTuples=%d\n", res->status, res->inTuples);
} }
......
...@@ -80,6 +80,7 @@ typedef enum ...@@ -80,6 +80,7 @@ typedef enum
#define STMT_ERROR_IN_ROW 30 #define STMT_ERROR_IN_ROW 30
#define STMT_INVALID_DESCRIPTOR_IDENTIFIER 31 #define STMT_INVALID_DESCRIPTOR_IDENTIFIER 31
#define STMT_OPTION_NOT_FOR_THE_DRIVER 32 #define STMT_OPTION_NOT_FOR_THE_DRIVER 32
#define STMT_FETCH_OUT_OF_RANGE 33
/* statement types */ /* statement types */
enum enum
...@@ -137,15 +138,6 @@ struct StatementClass_ ...@@ -137,15 +138,6 @@ struct StatementClass_
char *errormsg; char *errormsg;
int errornumber; int errornumber;
/* information on bindings */
/*** BindInfoClass *bindings; ***/ /* array to store the binding information */
/*** BindInfoClass bookmark;
int bindings_allocated; ***/
/* information on statement parameters */
/*** int parameters_allocated;
ParameterInfoClass *parameters; ***/
Int4 currTuple; /* current absolute row number (GetData, Int4 currTuple; /* current absolute row number (GetData,
* SetPos, SQLFetch) */ * SetPos, SQLFetch) */
int save_rowset_size; /* saved rowset size in case of int save_rowset_size; /* saved rowset size in case of
...@@ -200,9 +192,11 @@ struct StatementClass_ ...@@ -200,9 +192,11 @@ struct StatementClass_
char updatable; char updatable;
SWORD errorpos; SWORD errorpos;
SWORD error_recsize; SWORD error_recsize;
Int4 diag_row_count;
char *load_statement; /* to (re)load updatable individual rows */ char *load_statement; /* to (re)load updatable individual rows */
Int4 from_pos; Int4 from_pos;
Int4 where_pos; Int4 where_pos;
Int4 last_fetch_count_include_ommitted;
}; };
#define SC_get_conn(a) (a->hdbc) #define SC_get_conn(a) (a->hdbc)
......
...@@ -53,6 +53,8 @@ struct Rollback_ ...@@ -53,6 +53,8 @@ struct Rollback_
#define CURS_SELF_DELETED (1L << 7) #define CURS_SELF_DELETED (1L << 7)
#define CURS_SELF_UPDATED (1L << 8) #define CURS_SELF_UPDATED (1L << 8)
#define CURS_NEEDS_REREAD (1L << 9) #define CURS_NEEDS_REREAD (1L << 9)
#define CURS_IN_ROWSET (1L << 10)
#define CURS_OTHER_DELETED (1L << 11)
/* These macros are wrappers for the corresponding set_tuplefield functions /* These macros are wrappers for the corresponding set_tuplefield functions
but these handle automatic NULL determination and call set_tuplefield_null() but these handle automatic NULL determination and call set_tuplefield_null()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment