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/execute.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/execute.c')
-rw-r--r-- | src/interfaces/odbc/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/odbc/execute.c b/src/interfaces/odbc/execute.c index 14ed086e83a..f82a327f995 100644 --- a/src/interfaces/odbc/execute.c +++ b/src/interfaces/odbc/execute.c @@ -553,7 +553,7 @@ PGAPI_Transact( return SQL_ERROR; } - ok = QR_command_successful(res); + ok = QR_command_maybe_successful(res); QR_Destructor(res); if (!ok) |