Home
last modified time | relevance | path

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

12

/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_ps.c75 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
167 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
235 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
248 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
277 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_skip_metadata() local
318 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_read_prepare_response() local
358 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_prepare_read_eof() local
396 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
500 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in mysqlnd_stmt_execute_parse_response() local
659 MYSQLND_STMT_DATA * stmt = s? s->data : NULL; in MYSQLND_METHOD() local
[all …]
H A Dmysqlnd.h166 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt)) argument
167 #define mysqlnd_stmt_param_count(stmt) (stmt)->m->get_param_count((stmt)) argument
171 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt)) argument
172 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt)) argument
173 #define mysqlnd_stmt_sqlstate(stmt) (stmt)->m->get_sqlstate((stmt)) argument
221 #define mysqlnd_stmt_get_result(stmt) (stmt)->m->get_result((stmt)) argument
223 #define mysqlnd_stmt_next_result(stmt) (stmt)->m->next_result((stmt)) argument
226 #define mysqlnd_stmt_execute(stmt) (stmt)->m->execute((stmt)) argument
240 #define mysqlnd_stmt_free_result(stmt) (stmt)->m->free_result((stmt)) argument
242 #define mysqlnd_stmt_reset(stmt) (stmt)->m->reset((stmt)) argument
[all …]
H A Dmysqlnd_ps_codec.c561 mysqlnd_stmt_free_copies(MYSQLND_STMT_DATA * stmt, zval *copies) in mysqlnd_stmt_free_copies()
604 mysqlnd_stmt_execute_prepare_param_types(MYSQLND_STMT_DATA * stmt, zval ** copies_param, int * rese… in mysqlnd_stmt_execute_prepare_param_types()
657 mysqlnd_stmt_execute_store_types(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar ** p) in mysqlnd_stmt_execute_store_types()
701 mysqlnd_stmt_execute_calculate_param_values_size(MYSQLND_STMT_DATA * stmt, zval ** copies_param, si… in mysqlnd_stmt_execute_calculate_param_values_size()
795 mysqlnd_stmt_execute_store_param_values(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar * buf, … in mysqlnd_stmt_execute_store_param_values()
869 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_store_params() local
945 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_generate_request() local
H A Dmysqlnd_driver.c191 MYSQLND_STMT_DATA * stmt = NULL; in MYSQLND_METHOD() local
/PHP-8.0/ext/pdo_mysql/
H A Dmysql_statement.c32 # define pdo_mysql_stmt_execute_prepared(stmt) pdo_mysql_stmt_execute_prepared_mysqlnd(stmt) argument
62 static int pdo_mysql_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_dtor()
118 static void pdo_mysql_stmt_set_row_count(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_set_row_count()
128 static int pdo_mysql_fill_stmt_from_result(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_fill_stmt_from_result()
161 static bool pdo_mysql_stmt_after_execute_prepared(pdo_stmt_t *stmt) { in pdo_mysql_stmt_after_execute_prepared()
264 static int pdo_mysql_stmt_execute_prepared_libmysql(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute_prepared_libmysql()
289 static int pdo_mysql_stmt_execute_prepared_mysqlnd(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute_prepared_mysqlnd()
305 static int pdo_mysql_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_execute()
329 static int pdo_mysql_stmt_next_rowset(pdo_stmt_t *stmt) /* {{{ */ in pdo_mysql_stmt_next_rowset()
608 static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in pdo_mysql_stmt_describe()
[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 int pdo_mysql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_mysql_fetch_error_func()
169 static int mysql_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt,… in mysql_handle_preparer()
H A Dphp_pdo_mysql_int.h131 MYSQLND_STMT *stmt; member
133 MYSQL_STMT *stmt; member
/PHP-8.0/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()
74 static int pdo_sqlite_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_sqlite_stmt_param_hook()
201 static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt, in pdo_sqlite_stmt_fetch()
234 static int pdo_sqlite_stmt_describe(pdo_stmt_t *stmt, int colno) in pdo_sqlite_stmt_describe()
264 static int pdo_sqlite_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, size_t *len, int *calle… in pdo_sqlite_stmt_get_col()
293 static int pdo_sqlite_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pdo_sqlite_stmt_col_meta()
348 static int pdo_sqlite_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_sqlite_stmt_cursor_closer()
355 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 int pdo_sqlite_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_sqlite_fetch_error_func()
178 static int sqlite_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt in sqlite_handle_preparer()
/PHP-8.0/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()
259 static int pdo_dblib_stmt_should_stringify_col(pdo_stmt_t *stmt, int coltype) in pdo_dblib_stmt_should_stringify_col()
349 static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, in pdo_dblib_stmt_get_col()
510 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 int dblib_fetch_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in dblib_fetch_error()
97 static int dblib_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt,… in dblib_handle_preparer()
/PHP-8.0/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, const char *buf, in pdo_odbc_ucs22utf8()
122 static void free_cols(pdo_stmt_t *stmt, pdo_odbc_stmt *S) in free_cols()
138 static int odbc_stmt_dtor(pdo_stmt_t *stmt) in odbc_stmt_dtor()
159 static int odbc_stmt_execute(pdo_stmt_t *stmt) in odbc_stmt_execute()
527 static int odbc_stmt_fetch(pdo_stmt_t *stmt, in odbc_stmt_fetch()
565 static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno) in odbc_stmt_describe()
786 static int odbc_stmt_set_param(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_set_param()
813 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_get_attr()
845 static int odbc_stmt_next_rowset(pdo_stmt_t *stmt) in odbc_stmt_next_rowset()
[all …]
H A Dodbc_driver.c30 static int pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_odbc_fetch_error_func()
55 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… in pdo_odbc_error()
141 static int odbc_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt, … in odbc_handle_preparer()
225 PDO_ODBC_HSTMT stmt; in odbc_handle_doer() local
/PHP-8.0/ext/pdo_firebird/
H A Dfirebird_statement.c31 #define RECORD_ERROR(stmt) _firebird_error(NULL, stmt, __FILE__, __LINE__) argument
49 static int firebird_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in firebird_stmt_dtor()
85 static int firebird_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in firebird_stmt_execute()
176 static int firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */ in firebird_stmt_fetch()
206 static int firebird_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in firebird_stmt_describe()
261 static int firebird_fetch_blob(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_fetch_blob()
343 static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_stmt_get_col()
473 static int firebird_bind_blob(pdo_stmt_t *stmt, ISC_QUAD *blob_id, zval *param) in firebird_bind_blob()
789 static int firebird_stmt_set_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in firebird_stmt_set_attribute()
812 static int firebird_stmt_get_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in firebird_stmt_get_attribute()
[all …]
H A Dfirebird_driver.c458 void _firebird_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, char const *file, zend_long line) /* {{{ */ in _firebird_error()
507 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
984 static int pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_firebird_fetch_error_func()
/PHP-8.0/ext/pdo/
H A Dpdo_stmt.c128 int pdo_stmt_describe_columns(pdo_stmt_t *stmt) /* {{{ */ in pdo_stmt_describe_columns()
175 static void pdo_stmt_reset_columns(pdo_stmt_t *stmt) { in pdo_stmt_reset_columns()
1949 static bool pdo_stmt_do_next_rowset(pdo_stmt_t *stmt) in pdo_stmt_do_next_rowset()
2201 pdo_stmt_t *stmt = php_pdo_stmt_fetch_object(std); in pdo_dbstmt_free_storage() local
2207 pdo_stmt_t *stmt; in pdo_dbstmt_new() local
2308 pdo_stmt_t *stmt = Z_PDO_STMT_P(object); in pdo_stmt_iter_get() local
2337 pdo_stmt_t *stmt = row->stmt; in row_prop_read() local
2370 pdo_stmt_t *stmt = row->stmt; in row_dim_read() local
2423 pdo_stmt_t *stmt = row->stmt; in row_prop_exists() local
2455 pdo_stmt_t *stmt = row->stmt; in row_dim_exists() local
[all …]
H A Dpdo_dbh.c66 void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *sqlstate, const char *supp)… in pdo_raise_impl_error()
126 PDO_API void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt) /* {{{ */ in pdo_handle_error()
450 static void pdo_stmt_construct(zend_execute_data *execute_data, pdo_stmt_t *stmt, zval *object, zen… in pdo_stmt_construct()
492 pdo_stmt_t *stmt; in PHP_METHOD() local
1053 pdo_stmt_t *stmt; in PHP_METHOD() local
/PHP-8.0/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
895 MY_STMT *stmt; local
1933 MY_STMT *stmt; local
2231 MY_STMT *stmt; local
2300 MY_STMT *stmt; local
2331 MY_STMT *stmt; local
2346 MY_STMT *stmt; local
2391 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
983 MY_STMT *stmt; in ZEND_GET_MODULE() local
H A Dmysqli_nonapi.c531 MY_STMT *stmt; local
957 MY_STMT *stmt; local
1011 MY_STMT *stmt; local
/PHP-8.0/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()
419 static int pgsql_stmt_fetch(pdo_stmt_t *stmt, in pgsql_stmt_fetch()
472 static int pgsql_stmt_describe(pdo_stmt_t *stmt, int colno) in pgsql_stmt_describe()
533 static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, size_t *len, int *caller_fre… in pgsql_stmt_get_col()
640 static int pgsql_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pgsql_stmt_get_column_meta()
710 static int pdo_pgsql_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_pgsql_stmt_cursor_closer()
H A Dpgsql_driver.c68 int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const cha… in _pdo_pgsql_error()
112 static int pdo_pgsql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_pgsql_fetch_error_func()
249 static int pgsql_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt,… in pgsql_handle_preparer()
/PHP-8.0/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()
272 static int oci_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param… in oci_stmt_param_hook()
453 static int oci_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, zend_long offset) /* {{… in oci_stmt_fetch()
512 static int oci_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in oci_stmt_describe()
618 pdo_stmt_t *stmt; member
670 pdo_stmt_t *stmt = self->stmt; in oci_blob_close() local
717 static php_stream *oci_create_lob_stream(zval *dbh, pdo_stmt_t *stmt, OCILobLocator *lob) in oci_create_lob_stream()
745 static int oci_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, size_t *len, int *caller_frees… in oci_stmt_get_col()
782 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 int pdo_oci_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_oci_fetch_error_func()
56 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isini… in _oci_error()
241 static int oci_handle_preparer(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt, z… in oci_handle_preparer()
318 OCIStmt *stmt; in oci_handle_doer() local

Completed in 163 milliseconds

12