diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-02-18 03:16:11 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2002-02-18 03:16:11 +0000 |
commit | 3c16d095b5b395560a567db8ae8cfa06899150f9 (patch) | |
tree | 35c051e30bea40eb4003f2749117cb6ab627f1d0 /src/interfaces/odbc/bind.c | |
parent | b6db89a02d187a42e33fc3af8170749f22fdac99 (diff) | |
download | postgresql-3c16d095b5b395560a567db8ae8cfa06899150f9.tar.gz postgresql-3c16d095b5b395560a567db8ae8cfa06899150f9.zip |
The version is now 7.01.0010.
1) Handle parameter array.
2) Allow re-use of the connection handle after SQLDisconnect.
3) Reject NULL if no indicator specified.
4) Improve the handling of '_' in table name.
5) Unify internal begin/commit/abort operations.
6) Change SQLTables() to return null not "" for the
table_owner.
7) Fix a bug about parameter handling reported by Benoit Menendez.
8) Add cast in handling ODBC date/time escape sequences.
9) Fix a bug about cache_size handing in declare/fetch mode.
[ODBC3.0 related]
10) Improve the handling of descriptor handles(ODBC3.0).
11) Improve the type handling of some types for ODBC3.0.
[Thanks to Marcelo Aceto for his useful patches]
12) Allow nested ODBC escape.
13) Allow changing autocommit on/off inside the transaction
block.
14) Improve the handling of ODBC scalar functions.
Diffstat (limited to 'src/interfaces/odbc/bind.c')
-rw-r--r-- | src/interfaces/odbc/bind.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/odbc/bind.c b/src/interfaces/odbc/bind.c index e9f5cc34827..f3fb3537357 100644 --- a/src/interfaces/odbc/bind.c +++ b/src/interfaces/odbc/bind.c @@ -134,6 +134,8 @@ PGAPI_BindParameter( stmt->parameters[ipar].EXEC_buffer = NULL; } + if (pcbValue && stmt->options.param_offset_ptr) + pcbValue += (*stmt->options.param_offset_ptr >> 2); /* Data at exec macro only valid for C char/binary data */ if (pcbValue && (*pcbValue == SQL_DATA_AT_EXEC || *pcbValue <= SQL_LEN_DATA_AT_EXEC_OFFSET)) |