mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
master renames phase 1
This commit is contained in:
parent
0cf2dbdf58
commit
c3e3c98ec6
486 changed files with 11459 additions and 11541 deletions
|
@ -106,7 +106,7 @@ typedef struct {
|
|||
unsigned fetch_table_names:1;
|
||||
unsigned _reserved:31;
|
||||
#if !PDO_USE_MYSQLND
|
||||
php_uint_t max_buffer_size;
|
||||
zend_ulong max_buffer_size;
|
||||
#endif
|
||||
|
||||
pdo_mysql_error_info einfo;
|
||||
|
@ -122,9 +122,9 @@ typedef struct {
|
|||
const MYSQL_FIELD *fields;
|
||||
MYSQL_ROW current_data;
|
||||
#if PDO_USE_MYSQLND
|
||||
php_uint_t *current_lengths;
|
||||
zend_ulong *current_lengths;
|
||||
#else
|
||||
php_int_t *current_lengths;
|
||||
zend_long *current_lengths;
|
||||
#endif
|
||||
pdo_mysql_error_info einfo;
|
||||
#if PDO_USE_MYSQLND
|
||||
|
@ -136,11 +136,11 @@ typedef struct {
|
|||
PDO_MYSQL_PARAM_BIND *params;
|
||||
#ifndef PDO_USE_MYSQLND
|
||||
my_bool *in_null;
|
||||
php_uint_t *in_length;
|
||||
zend_ulong *in_length;
|
||||
#endif
|
||||
PDO_MYSQL_PARAM_BIND *bound_result;
|
||||
my_bool *out_null;
|
||||
php_uint_t *out_length;
|
||||
zend_ulong *out_length;
|
||||
unsigned int params_given;
|
||||
unsigned max_length:1;
|
||||
} pdo_mysql_stmt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue