Home
last modified time | relevance | path

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

12

/php-src/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.h165 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt)) argument
166 #define mysqlnd_stmt_param_count(stmt) (stmt)->m->get_param_count((stmt)) argument
170 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt)) argument
171 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt)) argument
172 #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.c498 mysqlnd_stmt_free_copies(MYSQLND_STMT_DATA * stmt, zval *copies) in mysqlnd_stmt_free_copies()
541 mysqlnd_stmt_execute_prepare_param_types(MYSQLND_STMT_DATA * stmt, zval ** copies_param, int * rese… in mysqlnd_stmt_execute_prepare_param_types()
594 mysqlnd_stmt_execute_store_types(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar ** p) in mysqlnd_stmt_execute_store_types()
638 mysqlnd_stmt_execute_calculate_param_values_size(MYSQLND_STMT_DATA * stmt, zval ** copies_param, si… in mysqlnd_stmt_execute_calculate_param_values_size()
732 mysqlnd_stmt_execute_store_param_values(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar * buf, … in mysqlnd_stmt_execute_store_param_values()
806 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_store_params() local
882 MYSQLND_STMT_DATA * stmt = s->data; in mysqlnd_stmt_execute_generate_request() local
H A Dmysqlnd_result.c173 MYSQLND_STMT_DATA * stmt = s ? s->data : NULL; in mysqlnd_query_read_result_set_header() local
1143 …esult_unbuffered_init(MYSQLND_RES *result, const unsigned int field_count, MYSQLND_STMT_DATA *stmt) in mysqlnd_result_unbuffered_init()
1178 …result_buffered_init(MYSQLND_RES * result, const unsigned int field_count, MYSQLND_STMT_DATA *stmt) in mysqlnd_result_buffered_init()
H A Dmysqlnd_driver.c193 MYSQLND_STMT_DATA * stmt = NULL; in MYSQLND_METHOD() local
H A Dmysqlnd_ext_plugin.c116 mysqlnd_plugin__get_plugin_stmt_data(const MYSQLND_STMT * stmt, const unsigned int plugin_id) in mysqlnd_plugin__get_plugin_stmt_data()
/php-src/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.h127 MYSQLND_STMT *stmt; member
129 MYSQL_STMT *stmt; member
/php-src/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()
H A Dphp_pdo_sqlite_int.h57 sqlite3_stmt *stmt; member
/php-src/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()
523 static int odbc_stmt_fetch(pdo_stmt_t *stmt, in odbc_stmt_fetch()
561 static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno) in odbc_stmt_describe()
766 static int odbc_stmt_set_param(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_set_param()
793 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, zend_long attr, zval *val) in odbc_stmt_get_attr()
825 static int odbc_stmt_next_rowset(pdo_stmt_t *stmt) in odbc_stmt_next_rowset()
[all …]
H A Dodbc_driver.c32 static void 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()
139 static bool odbc_handle_preparer(pdo_dbh_t *dbh, zend_string *sql, pdo_stmt_t *stmt, zval *driver_o… in odbc_handle_preparer()
222 PDO_ODBC_HSTMT stmt; in odbc_handle_doer() local
/php-src/ext/pdo_dblib/
H A Ddblib_stmt.c93 static int pdo_dblib_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_dblib_stmt_cursor_closer()
106 static int pdo_dblib_stmt_dtor(pdo_stmt_t *stmt) in pdo_dblib_stmt_dtor()
117 static int pdo_dblib_stmt_next_rowset_no_cancel(pdo_stmt_t *stmt) in pdo_dblib_stmt_next_rowset_no_cancel()
149 static int pdo_dblib_stmt_next_rowset(pdo_stmt_t *stmt) in pdo_dblib_stmt_next_rowset()
170 static int pdo_dblib_stmt_execute(pdo_stmt_t *stmt) in pdo_dblib_stmt_execute()
195 static int pdo_dblib_stmt_fetch(pdo_stmt_t *stmt, in pdo_dblib_stmt_fetch()
218 static int pdo_dblib_stmt_describe(pdo_stmt_t *stmt, int colno) in pdo_dblib_stmt_describe()
257 static int pdo_dblib_stmt_should_stringify_col(pdo_stmt_t *stmt, int coltype) in pdo_dblib_stmt_should_stringify_col()
342 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()
464 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-src/ext/pdo/
H A Dpdo_stmt.c170 static void pdo_stmt_reset_columns(pdo_stmt_t *stmt) { in pdo_stmt_reset_columns()
1868 static bool pdo_stmt_do_next_rowset(pdo_stmt_t *stmt) in pdo_stmt_do_next_rowset()
2089 PDO_API void php_pdo_free_statement(pdo_stmt_t *stmt) in php_pdo_free_statement()
2134 pdo_stmt_t *stmt = php_pdo_stmt_fetch_object(std); in pdo_dbstmt_free_storage() local
2140 pdo_stmt_t *stmt; in pdo_dbstmt_new() local
2239 pdo_stmt_t *stmt = Z_PDO_STMT_P(object); in pdo_stmt_iter_get() local
2288 pdo_stmt_t *stmt = row->stmt; in row_prop_read() local
2325 pdo_stmt_t *stmt = row->stmt; in row_dim_read() local
2363 pdo_stmt_t *stmt = row->stmt; in row_prop_exists() local
2391 pdo_stmt_t *stmt = row->stmt; in row_dim_exists() local
[all …]
H A Dpdo_dbh.c68 void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, pdo_error_type sqlstate, const char *su… in pdo_raise_impl_error()
128 PDO_API void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt) /* {{{ */ in pdo_handle_error()
564 static void pdo_stmt_construct(pdo_stmt_t *stmt, zval *object, zend_class_entry *dbstmt_ce, HashTab… in pdo_stmt_construct()
582 pdo_stmt_t *stmt; in PHP_METHOD() local
1184 pdo_stmt_t *stmt; in PHP_METHOD() local
/php-src/ext/pdo_firebird/
H A Dfirebird_statement.c81 static int get_formatted_time_tz(pdo_stmt_t *stmt, const ISC_TIME_TZ* timeTz, zval *result) in get_formatted_time_tz()
156 static int pdo_firebird_stmt_dtor(pdo_stmt_t *stmt) /* {{{ */ in pdo_firebird_stmt_dtor()
184 static int pdo_firebird_stmt_execute(pdo_stmt_t *stmt) /* {{{ */ in pdo_firebird_stmt_execute()
275 static int pdo_firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */ in pdo_firebird_stmt_fetch()
305 static int pdo_firebird_stmt_describe(pdo_stmt_t *stmt, int colno) /* {{{ */ in pdo_firebird_stmt_describe()
335 static int pdo_firebird_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pdo_firebird_stmt_get_column_meta()
367 static int php_firebird_fetch_blob(pdo_stmt_t *stmt, int colno, zval *result, ISC_QUAD *blob_id) in php_firebird_fetch_blob()
455 pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) in pdo_firebird_stmt_get_col()
586 static int php_firebird_bind_blob(pdo_stmt_t *stmt, ISC_QUAD *blob_id, zval *param) in php_firebird_bind_blob()
882 static int pdo_firebird_stmt_set_attribute(pdo_stmt_t *stmt, zend_long attr, zval *val) /* {{{ */ in pdo_firebird_stmt_set_attribute()
[all …]
H A Dfirebird_driver.c524 void php_firebird_set_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *state, const size_t state… in php_firebird_set_error()
622 pdo_stmt_t *stmt, zval *driver_options) in firebird_handle_preparer()
722 isc_stmt_handle stmt = PDO_FIREBIRD_HANDLE_INITIALIZER; in firebird_handle_doer() local
1276 static void pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_firebird_fetch_error_func()
/php-src/ext/mysqli/
H A Dmysqli_api.c128 MY_STMT *stmt; in PHP_FUNCTION() local
179 MY_STMT *stmt; in PHP_FUNCTION() local
408 MY_STMT *stmt; in PHP_FUNCTION() local
609 MY_STMT *stmt; in mysqli_stmt_fetch_mysqlnd() local
1397 MY_STMT *stmt; in PHP_FUNCTION() local
1681 MY_STMT *stmt; in PHP_FUNCTION() local
1734 MY_STMT *stmt; in PHP_FUNCTION() local
1764 MY_STMT *stmt; in PHP_FUNCTION() local
1779 MY_STMT *stmt; in PHP_FUNCTION() local
1821 MY_STMT *stmt; in PHP_FUNCTION() local
[all …]
H A Dmysqli_priv.h115 #define MYSQLI_REPORT_STMT_ERROR(stmt) \ argument
H A Dmysqli.c114 void php_clear_stmt_bind(MY_STMT *stmt) in php_clear_stmt_bind()
195 MY_STMT *stmt = (MY_STMT *)my_res->ptr; in mysqli_stmt_free_storage() local
644 MY_STMT *stmt; in ZEND_GET_MODULE() local
H A Dmysqli_nonapi.c494 MY_STMT *stmt; local
865 MY_STMT *stmt; local
914 MY_STMT *stmt; local
/php-src/ext/pdo_pgsql/
H A Dpgsql_statement.c122 static int pgsql_stmt_dtor(pdo_stmt_t *stmt) in pgsql_stmt_dtor()
180 static int pgsql_stmt_execute(pdo_stmt_t *stmt) in pgsql_stmt_execute()
366 static int pgsql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pgsql_stmt_param_hook()
520 static int pgsql_stmt_fetch(pdo_stmt_t *stmt, in pgsql_stmt_fetch()
601 static int pgsql_stmt_describe(pdo_stmt_t *stmt, int colno) in pgsql_stmt_describe()
620 static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, zval *result, enum pdo_param_type *type) in pgsql_stmt_get_col()
733 static int pgsql_stmt_get_column_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) in pgsql_stmt_get_column_meta()
829 static int pdo_pgsql_stmt_cursor_closer(pdo_stmt_t *stmt) in pdo_pgsql_stmt_cursor_closer()
834 static int pgsql_stmt_get_attr(pdo_stmt_t *stmt, zend_long attr, zval *val) in pgsql_stmt_get_attr()

Completed in 125 milliseconds

12