From dd7d41e93835046c0f0c81a5ff21856c1ae8321b Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Sun, 27 Feb 2005 12:43:23 +0000 Subject: use fetch_fields only once and remember the result --- ext/pdo_mysql/php_pdo_mysql_int.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/pdo_mysql/php_pdo_mysql_int.h') 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; -- cgit v1.2.1