diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-04-23 04:14:13 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-04-23 04:14:13 +0000 |
commit | bf1f2e545cf77365e232620b2c1c19a23addcd53 (patch) | |
tree | 46e21637a7bcde7935f8a37765b7724906e41cf1 /src/interfaces/odbc/statement.c | |
parent | 0c1fe3d2b99a658b2fe03e27338e819b52357cf3 (diff) |
1) Fix SQLProcedures().
2) Handle timestamp without time zone.
3) Improve SQLForeignKeys() in multibyte mode.
Diffstat (limited to 'src/interfaces/odbc/statement.c')
-rw-r--r-- | src/interfaces/odbc/statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/odbc/statement.c b/src/interfaces/odbc/statement.c index cf3db03ead3..122fcbff9bb 100644 --- a/src/interfaces/odbc/statement.c +++ b/src/interfaces/odbc/statement.c @@ -955,7 +955,7 @@ SC_execute(StatementClass *self) /* send the declare/select */ res = CC_send_query(conn, self->stmt_with_params, NULL, qflag); if (SC_is_fetchcursor(self) && res != NULL && - QR_command_successful(res)) + QR_command_maybe_successful(res)) { QR_Destructor(res); qflag &= (~ GO_INTO_TRANSACTION); |