diff options
Diffstat (limited to 'src/interfaces/odbc/statement.h')
-rw-r--r-- | src/interfaces/odbc/statement.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interfaces/odbc/statement.h b/src/interfaces/odbc/statement.h index 6cb0f6ccd39..534c8db4d8a 100644 --- a/src/interfaces/odbc/statement.h +++ b/src/interfaces/odbc/statement.h @@ -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 |