File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 75
75
#endif
76
76
77
77
typedef struct odbc_connection {
78
- ODBC_SQL_ENV_T henv ;
79
- ODBC_SQL_CONN_T hdbc ;
80
- char laststate [6 ];
81
- char lasterrormsg [SQL_MAX_MESSAGE_LENGTH ];
78
+ ODBC_SQL_ENV_T henv ;
79
+ ODBC_SQL_CONN_T hdbc ;
80
+ char laststate [6 ];
81
+ char lasterrormsg [SQL_MAX_MESSAGE_LENGTH ];
82
82
HashTable results ;
83
83
} odbc_connection ;
84
84
@@ -126,11 +126,11 @@ ZEND_BEGIN_MODULE_GLOBALS(odbc)
126
126
zend_long num_persistent ;
127
127
zend_long num_links ;
128
128
int defConn ;
129
- zend_long defaultlrl ;
130
- zend_long defaultbinmode ;
131
- zend_long default_cursortype ;
132
- char laststate [6 ];
133
- char lasterrormsg [SQL_MAX_MESSAGE_LENGTH ];
129
+ zend_long defaultlrl ;
130
+ zend_long defaultbinmode ;
131
+ zend_long default_cursortype ;
132
+ char laststate [6 ];
133
+ char lasterrormsg [SQL_MAX_MESSAGE_LENGTH ];
134
134
/* Stores ODBC links throughout the duration of a request. The connection member may be either persistent or
135
135
* non-persistent. In the former case, it is a pointer to an item in EG(persistent_list). This solution makes it
136
136
* possible to properly free links during RSHUTDOWN (or when they are explicitly closed), while persistent
You can’t perform that action at this time.
0 commit comments