]>
git.saurik.com Git - wxWidgets.git/blob - src/iodbc/hstmt.h
4 #include <../iodbc/config.h>
6 #include <../iodbc/isql.h>
7 #include <../iodbc/isqlext.h>
11 int type
; /* must be 1st field */
16 HDBC hdbc
; /* back point to connection object */
17 HSTMT dhstmt
; /* driver's stmt handle */
22 int asyn_on
; /* async executing which odbc call */
23 int need_on
; /* which call return SQL_NEED_DATA */
27 en_stmt_allocated
= 0,
33 en_stmt_needdata
, /* not call SQLParamData() yet */
34 en_stmt_mustput
, /* not call SQLPutData() yet */
35 en_stmt_canput
/* SQLPutData() called */
36 }; /* for statement handle state */
39 en_stmt_cursor_no
= 0,
41 en_stmt_cursor_opened
,
42 en_stmt_cursor_fetched
,
43 en_stmt_cursor_xfetched
44 }; /* for statement cursor state */
46 extern RETCODE
_iodbcdm_dropstmt();