Home
last modified time | relevance | path

Searched defs:stmt (Results 1 – 25 of 44) sorted by relevance

12

/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_ps.c75 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
145 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
226 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
255 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_skip_metadata() local
296 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_read_prepare_response() local
336 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_prepare_read_eof() local
374 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
478 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_execute_parse_response() local
632 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
[all …]
H A Dmysqlnd.h164 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt)) argument
165 #define mysqlnd_stmt_param_count(stmt) (stmt)->m->get_param_count((stmt)) argument
169 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt)) argument
170 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt)) argument
171 #define mysqlnd_stmt_sqlstate(stmt) (stmt)->m->get_sqlstate((stmt)) argument
217 #define mysqlnd_stmt_get_result(stmt) (stmt)->m->get_result((stmt)) argument
219 #define mysqlnd_stmt_next_result(stmt) (stmt)->m->next_result((stmt)) argument
222 #define mysqlnd_stmt_execute(stmt) (stmt)->m->execute((stmt)) argument
235 #define mysqlnd_stmt_free_result(stmt) (stmt)->m->free_result((stmt)) argument
237 #define mysqlnd_stmt_reset(stmt) (stmt)->m->reset((stmt)) argument
[all …]
H A Dmysqlnd_ps_codec.c494 mysqlnd_stmt_free_copies(MYSQLND_STMT_DATA * stmt, zval *copies) in mysqlnd_stmt_free_copies()
537 mysqlnd_stmt_execute_prepare_param_types(MYSQLND_STMT_DATA * stmt, zval ** copies_param, int * rese… in mysqlnd_stmt_execute_prepare_param_types()
590 mysqlnd_stmt_execute_store_types(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar ** p) in mysqlnd_stmt_execute_store_types()
634 mysqlnd_stmt_execute_calculate_param_values_size(MYSQLND_STMT_DATA * stmt, zval ** copies_param, si… in mysqlnd_stmt_execute_calculate_param_values_size()
728 mysqlnd_stmt_execute_store_param_values(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar * buf, … in mysqlnd_stmt_execute_store_param_values()
802 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_store_params() local
878 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_generate_request() local
H A Dmysqlnd_result.c175 MYSQLND_STMT_DATA * stmt = s ? s->data : NULL; in mysqlnd_query_read_result_set_header() local
1138 …esult_unbuffered_init(MYSQLND_RES *result, const unsigned int field_count, MYSQLND_STMT_DATA *stmt) in mysqlnd_result_unbuffered_init()
1173 …result_buffered_init(MYSQLND_RES * result, const unsigned int field_count, MYSQLND_STMT_DATA *stmt) in mysqlnd_result_buffered_init()
H A Dmysqlnd_driver.c188 MYSQLND_STMT_DATA * stmt = NULL; in MYSQLND_METHOD() local
/PHP-8.1/ext/pdo_mysql/
H A Dmysql_statement.c69 static int pdo_mysql_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_dtor()
119 static void pdo_mysql_stmt_set_row_count(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_set_row_count()
129 static int pdo_mysql_fill_stmt_from_result(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_fill_stmt_from_result()
162 static bool pdo_mysql_stmt_after_execute_prepared(pdo_stmt_t *stmt) { in pdo_mysql_stmt_after_execute_prepared()
265 static int pdo_mysql_stmt_execute_prepared_libmysql(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute_prepared_libmysql()
290 static int pdo_mysql_stmt_execute_prepared_mysqlnd(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute_prepared_mysqlnd()
306 static int pdo_mysql_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute()
339 static int pdo_mysql_stmt_next_rowset(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_next_rowset()
626 static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in pdo_mysql_stmt_describe()
669 pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) /* {{{ */ in pdo_mysql_stmt_get_col()
[all …]
H A Dmysql_driver.c42 int _pdo_mysql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line) in _pdo_mysql_error()
124 static void pdo_mysql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_mysql_fetch_error_func()
170 static bool mysql_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver_… in mysql_handle_preparer()
H A Dphp_pdo_mysql_int.h125 MYSQLND_STMT *stmt; member
127 MYSQL_STMT *stmt; member
/PHP-8.1/ext/pdo_sqlite/
H A Dsqlite_statement.c30 static int pdo_sqlite_stmt_dtor(pdo_stmt_t *stmt) in pdo_sqlite_stmt_dtor()
42 static int pdo_sqlite_stmt_execute(pdo_stmt_t *stmt) in pdo_sqlite_stmt_execute()
75 static int pdo_sqlite_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_sqlite_stmt_param_hook()
202 static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt, in pdo_sqlite_stmt_fetch()
236 static int pdo_sqlite_stmt_describe(pdo_stmt_t *stmt, int colno) in pdo_sqlite_stmt_describe()
256 pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) in pdo_sqlite_stmt_get_col()
302 static int pdo_sqlite_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pdo_sqlite_stmt_col_meta()
363 static int pdo_sqlite_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_sqlite_stmt_cursor_closer()
370 static int pdo_sqlite_stmt_get_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) in pdo_sqlite_stmt_get_attribute()
H A Dsqlite_driver.c31 int _pdo_sqlite_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line) /* {{{ */ in _pdo_sqlite_error()
85 static void pdo_sqlite_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_sqlite_fetch_error_func()
175 static bool sqlite_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver… in sqlite_handle_preparer()
/PHP-8.1/ext/pdo_odbc/
H A Dodbc_stmt.c56 static int pdo_odbc_utf82ucs2(pdo_stmt_t *stmt, int is_unicode, const char *buf, in pdo_odbc_utf82ucs2()
91 static int pdo_odbc_ucs22utf8(pdo_stmt_t *stmt, int is_unicode, zval *result) in pdo_odbc_ucs22utf8()
119 static void free_cols(pdo_stmt_t *stmt, pdo_odbc_stmt *S) in free_cols()
135 static int odbc_stmt_dtor(pdo_stmt_t *stmt) in odbc_stmt_dtor()
156 static int odbc_stmt_execute(pdo_stmt_t *stmt) in odbc_stmt_execute()
514 static int odbc_stmt_fetch(pdo_stmt_t *stmt, in odbc_stmt_fetch()
552 static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno) in odbc_stmt_describe()
756 static int odbc_stmt_set_param(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_set_param()
783 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_get_attr()
815 static int odbc_stmt_next_rowset(pdo_stmt_t *stmt) in odbc_stmt_next_rowset()
[all …]
H A Dodbc_driver.c30 static void pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_odbc_fetch_error_func()
53 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… in pdo_odbc_error()
137 static bool odbc_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver_o… in odbc_handle_preparer()
220 PDO_ODBC_HSTMT stmt; in odbc_handle_doer() local
/PHP-8.1/ext/pdo_dblib/
H A Ddblib_stmt.c94 static int pdo_dblib_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_dblib_stmt_cursor_closer()
107 static int pdo_dblib_stmt_dtor(pdo_stmt_t *stmt) in pdo_dblib_stmt_dtor()
118 static int pdo_dblib_stmt_next_rowset_no_cancel(pdo_stmt_t *stmt) in pdo_dblib_stmt_next_rowset_no_cancel()
150 static int pdo_dblib_stmt_next_rowset(pdo_stmt_t *stmt) in pdo_dblib_stmt_next_rowset()
171 static int pdo_dblib_stmt_execute(pdo_stmt_t *stmt) in pdo_dblib_stmt_execute()
196 static int pdo_dblib_stmt_fetch(pdo_stmt_t *stmt, in pdo_dblib_stmt_fetch()
219 static int pdo_dblib_stmt_describe(pdo_stmt_t *stmt, int colno) in pdo_dblib_stmt_describe()
258 static int pdo_dblib_stmt_should_stringify_col(pdo_stmt_t *stmt, int coltype) in pdo_dblib_stmt_should_stringify_col()
343 static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, zval *zv, enum pdo_param_type *type) in pdo_dblib_stmt_get_col()
465 static int pdo_dblib_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pdo_dblib_stmt_get_column_meta()
H A Ddblib_driver.c34 static void dblib_fetch_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in dblib_fetch_error()
94 static bool dblib_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver_… in dblib_handle_preparer()
/PHP-8.1/ext/pdo_firebird/
H A Dfirebird_statement.c31 #define RECORD_ERROR(stmt) _firebird_error(NULL, stmt, __FILE__, __LINE__) argument
80 static int firebird_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in firebird_stmt_dtor()
108 static int firebird_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in firebird_stmt_execute()
200 static int firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */ in firebird_stmt_fetch()
230 static int firebird_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in firebird_stmt_describe()
257 static int firebird_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in firebird_stmt_get_column_meta()
291 static int firebird_fetch_blob(pdo_stmt_t *stmt, int colno, zval *result, ISC_QUAD *blob_id) in firebird_fetch_blob()
377 pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) in firebird_stmt_get_col()
500 static int firebird_bind_blob(pdo_stmt_t *stmt, ISC_QUAD *blob_id, zval *param) in firebird_bind_blob()
786 static int firebird_stmt_set_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in firebird_stmt_set_attribute()
[all …]
H A Dfirebird_driver.c461 void _firebird_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, char const *file, zend_long line) /* {{{ */ in _firebird_error()
508 pdo_stmt_t *stmt, zval *driver_options) in firebird_handle_preparer()
595 isc_stmt_handle stmt = PDO_FIREBIRD_HANDLE_INITIALIZER; in firebird_handle_doer() local
990 static void pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_firebird_fetch_error_func()
/PHP-8.1/ext/pdo/
H A Dpdo_stmt.c175 static void pdo_stmt_reset_columns(pdo_stmt_t *stmt) { in pdo_stmt_reset_columns()
1879 static bool pdo_stmt_do_next_rowset(pdo_stmt_t *stmt) in pdo_stmt_do_next_rowset()
2083 PDO_API void php_pdo_free_statement(pdo_stmt_t *stmt) in php_pdo_free_statement()
2128 pdo_stmt_t *stmt = php_pdo_stmt_fetch_object(std); in pdo_dbstmt_free_storage() local
2134 pdo_stmt_t *stmt; in pdo_dbstmt_new() local
2235 pdo_stmt_t *stmt = Z_PDO_STMT_P(object); in pdo_stmt_iter_get() local
2264 pdo_stmt_t *stmt = row->stmt; in row_prop_read() local
2293 pdo_stmt_t *stmt = row->stmt; in row_dim_read() local
2344 pdo_stmt_t *stmt = row->stmt; in row_prop_exists() local
2374 pdo_stmt_t *stmt = row->stmt; in row_dim_exists() local
[all …]
H A Dpdo_dbh.c65 void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *sqlstate, const char *supp)… in pdo_raise_impl_error()
125 PDO_API void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt) /* {{{ */ in pdo_handle_error()
455 static void pdo_stmt_construct(zend_execute_data *execute_data, pdo_stmt_t *stmt, zval *object, zen… in pdo_stmt_construct()
496 pdo_stmt_t *stmt; in PHP_METHOD() local
1089 pdo_stmt_t *stmt; in PHP_METHOD() local
/PHP-8.1/ext/mysqli/
H A Dmysqli_api.c317 MY_STMT *stmt; in PHP_FUNCTION() local
547 MY_STMT *stmt; in PHP_FUNCTION() local
812 MY_STMT *stmt; local
937 MY_STMT *stmt; local
1984 MY_STMT *stmt; local
2282 MY_STMT *stmt; local
2351 MY_STMT *stmt; local
2382 MY_STMT *stmt; local
2397 MY_STMT *stmt; local
2442 MY_STMT *stmt; local
[all …]
H A Dmysqli_priv.h125 #define MYSQLI_REPORT_STMT_ERROR(stmt) \ argument
H A Dmysqli.c154 void php_clear_stmt_bind(MY_STMT *stmt) in php_clear_stmt_bind()
245 MY_STMT *stmt = (MY_STMT *)my_res->ptr; in mysqli_stmt_free_storage() local
940 MY_STMT *stmt; in ZEND_GET_MODULE() local
H A Dmysqli_nonapi.c579 MY_STMT *stmt; local
1001 MY_STMT *stmt; local
1055 MY_STMT *stmt; local
/PHP-8.1/ext/pdo_pgsql/
H A Dpgsql_statement.c57 static int pgsql_stmt_dtor(pdo_stmt_t *stmt) in pgsql_stmt_dtor()
131 static int pgsql_stmt_execute(pdo_stmt_t *stmt) in pgsql_stmt_execute()
264 static int pgsql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pgsql_stmt_param_hook()
418 static int pgsql_stmt_fetch(pdo_stmt_t *stmt, in pgsql_stmt_fetch()
471 static int pgsql_stmt_describe(pdo_stmt_t *stmt, int colno) in pgsql_stmt_describe()
490 static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) in pgsql_stmt_get_col()
591 static int pgsql_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pgsql_stmt_get_column_meta()
681 static int pdo_pgsql_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_pgsql_stmt_cursor_closer()
/PHP-8.1/ext/pdo_oci/
H A Doci_statement.c61 static int oci_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in oci_stmt_dtor()
126 static int oci_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in oci_stmt_execute()
273 static int oci_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param… in oci_stmt_param_hook()
454 static int oci_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, zend_long offset) /* {{… in oci_stmt_fetch()
513 static int oci_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in oci_stmt_describe()
614 pdo_stmt_t *stmt; member
678 pdo_stmt_t *stmt = self->stmt; in oci_blob_close() local
725 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob) in oci_create_lob_stream()
755 static int oci_stmt_get_col(pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) /… in oci_stmt_get_col()
789 static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) /* {{{ */ in oci_stmt_col_meta()
H A Doci_driver.c32 static void pdo_oci_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_oci_fetch_error_func()
54 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isini… in _oci_error()
237 static bool oci_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver_op… in oci_handle_preparer()
312 OCIStmt *stmt; in oci_handle_doer() local

Completed in 82 milliseconds

12