/PHP-5.4/ext/mysqlnd/ |
H A D | mysqlnd_ps.c | 59 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local 129 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local 199 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local 213 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local 243 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_skip_metadata() local 280 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_read_prepare_response() local 323 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_prepare_read_eof() local 362 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local 475 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_execute_parse_response() local 584 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local [all …]
|
H A D | mysqlnd.h | 171 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt) TSRMLS_CC) argument 176 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt) TSRMLS_CC) argument 177 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt) TSRMLS_CC) argument 178 #define mysqlnd_stmt_sqlstate(stmt) (stmt)->m->get_sqlstate((stmt) TSRMLS_CC) argument 224 #define mysqlnd_stmt_get_result(stmt) (stmt)->m->get_result((stmt) TSRMLS_CC) argument 225 #define mysqlnd_stmt_more_results(stmt) (stmt)->m->more_results((stmt) TSRMLS_CC) argument 226 #define mysqlnd_stmt_next_result(stmt) (stmt)->m->next_result((stmt) TSRMLS_CC) argument 229 #define mysqlnd_stmt_execute(stmt) (stmt)->m->execute((stmt) TSRMLS_CC) argument 243 #define mysqlnd_stmt_free_result(stmt) (stmt)->m->free_result((stmt) TSRMLS_CC) argument 245 #define mysqlnd_stmt_reset(stmt) (stmt)->m->reset((stmt) TSRMLS_CC) argument [all …]
|
H A D | mysqlnd_driver.c | 197 MYSQLND_STMT_DATA * stmt = NULL; in MYSQLND_METHOD() local
|
H A D | mysqlnd_ext_plugin.c | 88 PHPAPI void ** _mysqlnd_plugin_get_plugin_stmt_data(const MYSQLND_STMT * stmt, unsigned int plugin_… in _mysqlnd_plugin_get_plugin_stmt_data()
|
/PHP-5.4/ext/pdo_mysql/ |
H A D | mysql_statement.c | 36 # define pdo_mysql_stmt_execute_prepared(stmt) pdo_mysql_stmt_execute_prepared_mysqlnd(stmt TSRMLS_… argument 38 # define pdo_mysql_stmt_close(stmt) mysqlnd_stmt_close(stmt, 0) argument 40 # define pdo_mysql_stmt_execute_prepared(stmt) pdo_mysql_stmt_execute_prepared_libmysql(stmt TSRMLS… argument 42 # define pdo_mysql_stmt_close(stmt) mysql_stmt_close(stmt) argument 449 static int pdo_mysql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo… in pdo_mysql_stmt_param_hook() 590 static int pdo_mysql_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, long offset TSRML… 654 static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */ 705 static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int … 806 static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC) /* {…
|
H A D | mysql_driver.c | 46 int _pdo_mysql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line TSRMLS_DC) in _pdo_mysql_error() 117 static int pdo_mysql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in pdo_mysql_fetch_error_func() 164 static int mysql_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, z… in mysql_handle_preparer()
|
H A D | php_pdo_mysql_int.h | 131 MYSQLND_STMT *stmt; member 133 MYSQL_STMT *stmt; member
|
/PHP-5.4/ext/pdo_sqlite/ |
H A D | sqlite_statement.c | 78 static int pdo_sqlite_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_sqlite_stmt_param_hook() 187 static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt, in pdo_sqlite_stmt_fetch() 220 static int pdo_sqlite_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in pdo_sqlite_stmt_describe() 249 static int pdo_sqlite_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int… in pdo_sqlite_stmt_get_col() 278 static int pdo_sqlite_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC) in pdo_sqlite_stmt_col_meta()
|
H A D | sqlite_driver.c | 34 int _pdo_sqlite_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line TSRMLS_DC) /* {{… in _pdo_sqlite_error() 89 static int pdo_sqlite_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in pdo_sqlite_fetch_error_func() 178 static int sqlite_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, … in sqlite_handle_preparer()
|
/PHP-5.4/ext/pdo/ |
H A D | pdo.php | 11 $stmt = $x->prepare("INSERT INTO test (NAME, VALUE) VALUES (:name, :value)"); variable 25 $stmt = null; variable 47 $stmt = $x->prepare("select NAME, VALUE from test where value like ?"); variable
|
H A D | pdo_stmt.c | 263 static void get_lazy_object(pdo_stmt_t *stmt, zval *return_value TSRMLS_DC) /* {{{ */ in get_lazy_object() 689 static int do_fetch_common(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, in do_fetch_common() 853 static int do_fetch(pdo_stmt_t *stmt, int do_bind, zval *return_value, in do_fetch() 1773 static int generic_stmt_attr_get(pdo_stmt_t *stmt, zval *return_value, long attr) in generic_stmt_attr_get() 2240 pdo_stmt_t * stmt = (pdo_stmt_t *) zend_object_store_get_object(object TSRMLS_CC); in dbstmt_prop_write() local 2283 pdo_stmt_t *stmt = (pdo_stmt_t*)zend_object_store_get_object(object TSRMLS_CC); in dbstmt_method_get() local 2319 pdo_stmt_t *stmt; in dbstmt_clone_obj() local 2444 pdo_stmt_t *stmt; in pdo_dbstmt_new() local 2462 pdo_stmt_t *stmt; member 2527 pdo_stmt_t *stmt = I->stmt; /* for PDO_HANDLE_STMT_ERR() */ in pdo_stmt_iter_move_forwards() local [all …]
|
H A D | pdo_dbh.c | 41 void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *sqlstate, const char *supp … in pdo_raise_impl_error() 449 static void pdo_stmt_construct(pdo_stmt_t *stmt, zval *object, zend_class_entry *dbstmt_ce, zval *c… in pdo_stmt_construct() 514 pdo_stmt_t *stmt; in PHP_METHOD() local 1089 pdo_stmt_t *stmt; in PHP_METHOD() local
|
/PHP-5.4/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 60 static int pdo_odbc_utf82ucs2(pdo_stmt_t *stmt, int is_unicode, const char *buf, in pdo_odbc_utf82ucs2() 95 static int pdo_odbc_ucs22utf8(pdo_stmt_t *stmt, int is_unicode, const char *buf, in pdo_odbc_ucs22utf8() 126 static void free_cols(pdo_stmt_t *stmt, pdo_odbc_stmt *S TSRMLS_DC) in free_cols() 276 static int odbc_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in odbc_stmt_param_hook() 510 static int odbc_stmt_fetch(pdo_stmt_t *stmt, in odbc_stmt_fetch() 548 static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in odbc_stmt_describe() 615 static int odbc_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *call… in odbc_stmt_get_col() 742 static int odbc_stmt_set_param(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) in odbc_stmt_set_param() 769 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) in odbc_stmt_get_attr()
|
H A D | odbc_driver.c | 34 static int pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in pdo_odbc_fetch_error_func() 59 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… in pdo_odbc_error() 145 static int odbc_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zv… in odbc_handle_preparer() 228 PDO_ODBC_HSTMT stmt; in odbc_handle_doer() local
|
/PHP-5.4/ext/pdo_firebird/ |
H A D | firebird_statement.c | 33 #define RECORD_ERROR(stmt) _firebird_error(NULL, stmt, __FILE__, __LINE__ TSRMLS_CC) argument 155 static int firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */ in firebird_stmt_fetch() 183 static int firebird_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */ in firebird_stmt_describe() 221 static int firebird_fetch_blob(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_fetch_blob() 298 static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_stmt_get_col() 411 static int firebird_bind_blob(pdo_stmt_t *stmt, ISC_QUAD *blob_id, zval *param TSRMLS_DC) in firebird_bind_blob() 450 static int firebird_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, /* {{{ */ in firebird_stmt_param_hook() 633 static int firebird_stmt_set_attribute(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) /* {{{ */ in firebird_stmt_set_attribute() 654 static int firebird_stmt_get_attribute(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) /* {{{ */ in firebird_stmt_get_attribute()
|
H A D | firebird_driver.c | 40 void _firebird_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, char const *file, long line TSRMLS_DC) /* {{… in _firebird_error() 136 pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC) in firebird_handle_preparer() 224 isc_stmt_handle stmt = NULL; in firebird_handle_doer() local 603 static int pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) /*… in pdo_firebird_fetch_error_func()
|
/PHP-5.4/ext/mysqli/ |
H A D | mysqli_api.c | 219 MY_STMT *stmt; in PHP_FUNCTION() local 479 MY_STMT *stmt; in PHP_FUNCTION() local 764 MY_STMT *stmt; in PHP_FUNCTION() local 857 MY_STMT *stmt; local 1942 MY_STMT *stmt; local 2252 MY_STMT *stmt; local 2299 MY_STMT *stmt; local 2326 MY_STMT *stmt; local 2342 MY_STMT *stmt; local 2392 MY_STMT *stmt; local [all …]
|
H A D | mysqli_priv.h | 145 #define MYSQLI_REPORT_STMT_ERROR(stmt) \ argument
|
H A D | mysqli_nonapi.c | 469 MY_STMT *stmt; local 891 MY_STMT *stmt; local 946 MY_STMT *stmt; local
|
/PHP-5.4/ext/pdo_dblib/ |
H A D | dblib_stmt.c | 173 static int pdo_dblib_stmt_fetch(pdo_stmt_t *stmt, in pdo_dblib_stmt_fetch() 196 static int pdo_dblib_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in pdo_dblib_stmt_describe() 215 static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, in pdo_dblib_stmt_get_col() 284 static int pdo_dblib_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_dblib_stmt_param_hook() 290 static int pdo_dblib_stmt_get_column_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_D… in pdo_dblib_stmt_get_column_meta()
|
H A D | dblib_driver.c | 38 static int dblib_fetch_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in dblib_fetch_error() 94 static int dblib_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, z… in dblib_handle_preparer()
|
/PHP-5.4/ext/pdo_pgsql/ |
H A D | pgsql_statement.c | 238 static int pgsql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pgsql_stmt_param_hook() 382 static int pgsql_stmt_fetch(pdo_stmt_t *stmt, in pgsql_stmt_fetch() 430 static int pgsql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in pgsql_stmt_describe() 492 static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *cal… in pgsql_stmt_get_col() 571 static int pgsql_stmt_get_column_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC) in pgsql_stmt_get_column_meta()
|
H A D | pgsql_driver.c | 63 int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const cha… in _pdo_pgsql_error() 105 static int pdo_pgsql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) /* {{… in pdo_pgsql_fetch_error_func() 213 static int pgsql_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, z… in pgsql_handle_preparer()
|
/PHP-5.4/ext/pdo_oci/ |
H A D | oci_statement.c | 261 static int oci_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param… in oci_stmt_param_hook() 440 static int oci_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, long offset TSRMLS_DC) … in oci_stmt_fetch() 504 static int oci_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */ in oci_stmt_describe() 608 pdo_stmt_t *stmt; member 659 pdo_stmt_t *stmt = self->stmt; in oci_blob_close() local 701 static php_stream *oci_create_lob_stream(pdo_stmt_t *stmt, OCILobLocator *lob TSRMLS_DC) in oci_create_lob_stream() 721 static int oci_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *calle… in oci_stmt_get_col()
|
H A D | oci_driver.c | 36 static int pdo_oci_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) /* {{{ … in pdo_oci_fetch_error_func() 60 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isini… in _oci_error() 251 static int oci_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zva… in oci_handle_preparer() 330 OCIStmt *stmt; in oci_handle_doer() local
|