mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
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.
This commit is contained in:
@ -75,6 +75,7 @@ typedef enum
|
||||
#define STMT_PROGRAM_TYPE_OUT_OF_RANGE 26
|
||||
#define STMT_BAD_ERROR 27
|
||||
#define STMT_INVALID_OPTION_IDENTIFIER 28
|
||||
#define STMT_RETURN_NULL_WITHOUT_INDICATOR 29
|
||||
|
||||
/* statement types */
|
||||
enum
|
||||
@ -207,6 +208,9 @@ struct StatementClass_
|
||||
char *stmt_with_params; /* statement after parameter
|
||||
* substitution */
|
||||
int stmt_size_limit;
|
||||
int exec_start_row;
|
||||
int exec_end_row;
|
||||
int exec_current_row;
|
||||
|
||||
char pre_executing; /* This statement is prematurely executing */
|
||||
char inaccurate_result; /* Current status is PREMATURE but
|
||||
|
Reference in New Issue
Block a user