summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/php_pdo_firebird_int.h
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2015-01-12 09:02:17 +0000
committerJakub Zelenka <bukka@php.net>2015-01-12 09:02:17 +0000
commitb3823f5cab4e405b767cd8dddebb54b1c29bd2a8 (patch)
treee42fbf615d62213c1e744b8a909155e8f2cdaa87 /ext/pdo_firebird/php_pdo_firebird_int.h
parente6fb493e5dbafdad37ba5334c986636342b5d9aa (diff)
parent31817447cc06093368f022086340ad3f6f616528 (diff)
downloadphp-git-b3823f5cab4e405b767cd8dddebb54b1c29bd2a8.tar.gz
Merge branch 'master' into jsond
Conflicts: ext/json/JSON_parser.c ext/json/JSON_parser.h ext/json/json.c ext/json/utf8_decode.c
Diffstat (limited to 'ext/pdo_firebird/php_pdo_firebird_int.h')
-rw-r--r--ext/pdo_firebird/php_pdo_firebird_int.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h
index 59e053136c..3e9ce6d052 100644
--- a/ext/pdo_firebird/php_pdo_firebird_int.h
+++ b/ext/pdo_firebird/php_pdo_firebird_int.h
@@ -74,34 +74,34 @@ typedef struct {
/* the last error that didn't come from the API */
char const *last_app_error;
-
+
/* date and time format strings, can be set by the set_attribute method */
char *date_format;
char *time_format;
char *timestamp_format;
-
+
/* prepend table names on column names in fetch */
unsigned fetch_table_names:1;
-
+
unsigned _reserved:31;
-
+
} pdo_firebird_db_handle;
typedef struct {
-
+
/* the link that owns this statement */
pdo_firebird_db_handle *H;
-
+
/* the statement handle */
isc_stmt_handle stmt;
-
+
/* the name of the cursor (if it has one) */
char name[32];
-
+
/* the type of statement that was issued */
char statement_type:8;
-
+
/* whether EOF was reached for this statement */
unsigned exhausted:1;
@@ -112,16 +112,16 @@ typedef struct {
/* the named params that were converted to ?'s by the driver */
HashTable *named_params;
-
+
/* allocated space to convert fields values to other types */
char **fetch_buf;
-
+
/* the input SQLDA */
XSQLDA *in_sqlda;
-
+
/* the output SQLDA */
XSQLDA out_sqlda; /* last member */
-
+
} pdo_firebird_stmt;
extern pdo_driver_t pdo_firebird_driver;