summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/php_pdo_mysql_int.h
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2005-02-27 12:43:23 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2005-02-27 12:43:23 +0000
commitdd7d41e93835046c0f0c81a5ff21856c1ae8321b (patch)
tree9b3ad05c8c334206d30dc7cd23becd6b2bb543ee /ext/pdo_mysql/php_pdo_mysql_int.h
parent0ec872a1536642f87b87873dad56ddf65f21bf59 (diff)
downloadphp-git-dd7d41e93835046c0f0c81a5ff21856c1ae8321b.tar.gz
use fetch_fields only once and remember the result
Diffstat (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h')
-rwxr-xr-xext/pdo_mysql/php_pdo_mysql_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo_mysql/php_pdo_mysql_int.h b/ext/pdo_mysql/php_pdo_mysql_int.h
index eacaa66f63..888a605591 100755
--- a/ext/pdo_mysql/php_pdo_mysql_int.h
+++ b/ext/pdo_mysql/php_pdo_mysql_int.h
@@ -47,6 +47,7 @@ typedef struct {
typedef struct {
pdo_mysql_db_handle *H;
MYSQL_RES *result;
+ MYSQL_FIELD *fields;
MYSQL_ROW current_data;
long *current_lengths;
} pdo_mysql_stmt;