File tree 3 files changed +13
-13
lines changed
3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 29
29
30
30
typedef enum
31
31
{
32
- CONN_NOT_CONNECTED , /* Connection has not been established */
33
- CONN_CONNECTED , /* Connection is up and has been
34
- * established */
35
- CONN_DOWN , /* Connection is broken */
36
- CONN_EXECUTING /* the connection is currently executing a
37
- * statement */
32
+ CONN_NOT_CONNECTED , /* Connection has not been established */
33
+ CONN_CONNECTED , /* Connection is up and has been
34
+ * established */
35
+ CONN_DOWN , /* Connection is broken */
36
+ CONN_EXECUTING /* the connection is currently executing a
37
+ * statement */
38
38
} CONN_Status ;
39
39
40
40
/* These errors have general sql error state */
Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ typedef signed short RETCODE;
30
30
#define SQL_MAX_DSN_LENGTH 32
31
31
32
32
/* return code */
33
- #define SQL_INVALID_HANDLE (-2)
34
- #define SQL_ERROR (-1)
35
- #define SQL_SUCCESS 0
36
- #define SQL_SUCCESS_WITH_INFO 1
37
- #define SQL_NO_DATA_FOUND 100
33
+ #define SQL_INVALID_HANDLE (-2)
34
+ #define SQL_ERROR (-1)
35
+ #define SQL_SUCCESS 0
36
+ #define SQL_SUCCESS_WITH_INFO 1
37
+ #define SQL_NO_DATA_FOUND 100
38
38
39
39
/* standard SQL datatypes (agree with ANSI type numbering) */
40
40
#define SQL_CHAR 1
Original file line number Diff line number Diff line change 128
128
129
129
#define SQL_API_SQLDRIVERS 71
130
130
#define SQL_API_SQLBINDPARAMETER 72
131
- #define SQL_EXT_API_LAST SQL_API_SQLBINDPARAMETER
132
- #define SQL_NUM_EXTENSIONS (SQL_EXT_API_LAST - SQL_EXT_API_START + 1)
131
+ #define SQL_EXT_API_LAST SQL_API_SQLBINDPARAMETER
132
+ #define SQL_NUM_EXTENSIONS (SQL_EXT_API_LAST - SQL_EXT_API_START + 1)
133
133
134
134
#define SQL_API_ALL_FUNCTIONS 0
135
135
You can’t perform that action at this time.
0 commit comments