diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2005-02-27 12:43:23 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2005-02-27 12:43:23 +0000 |
commit | dd7d41e93835046c0f0c81a5ff21856c1ae8321b (patch) | |
tree | 9b3ad05c8c334206d30dc7cd23becd6b2bb543ee /ext/pdo_mysql/php_pdo_mysql_int.h | |
parent | 0ec872a1536642f87b87873dad56ddf65f21bf59 (diff) | |
download | php-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-x | ext/pdo_mysql/php_pdo_mysql_int.h | 1 |
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; |