Home
last modified time | relevance | path

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

12

/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_ps.c59 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
214 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local
245 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_skip_metadata() local
282 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_read_prepare_response() local
324 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in mysqlnd_stmt_prepare_read_eof() local
363 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
583 MYSQLND_STMT_DATA * stmt = s? s->data:NULL; in MYSQLND_METHOD() local
[all …]
H A Dmysqlnd.h183 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt) TSRMLS_CC) argument
184 #define mysqlnd_stmt_param_count(stmt) (stmt)->m->get_param_count((stmt) TSRMLS_CC) argument
188 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt) TSRMLS_CC) argument
189 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt) TSRMLS_CC) argument
190 #define mysqlnd_stmt_sqlstate(stmt) (stmt)->m->get_sqlstate((stmt) TSRMLS_CC) argument
243 #define mysqlnd_stmt_get_result(stmt) (stmt)->m->get_result((stmt) TSRMLS_CC) argument
244 #define mysqlnd_stmt_more_results(stmt) (stmt)->m->more_results((stmt) TSRMLS_CC) argument
245 #define mysqlnd_stmt_next_result(stmt) (stmt)->m->next_result((stmt) TSRMLS_CC) argument
248 #define mysqlnd_stmt_execute(stmt) (stmt)->m->execute((stmt) TSRMLS_CC) argument
262 #define mysqlnd_stmt_free_result(stmt) (stmt)->m->free_result((stmt) TSRMLS_CC) argument
[all …]
/PHP-5.3/ext/pdo_mysql/
H A Dmysql_statement.c36 # 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
469 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()
611 static int pdo_mysql_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, long offset TSRML…
677 static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */
728 static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int …
829 static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC) /* {…
H A Dmysql_driver.c57 int _pdo_mysql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line TSRMLS_DC) in _pdo_mysql_error()
139 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()
186 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 Dphp_pdo_mysql_int.h132 MYSQLND_STMT *stmt; member
134 MYSQL_STMT *stmt; member
/PHP-5.3/ext/pdo_sqlite/
H A Dsqlite_statement.c78 static int pdo_sqlite_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_sqlite_stmt_param_hook()
181 static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt, in pdo_sqlite_stmt_fetch()
214 static int pdo_sqlite_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in pdo_sqlite_stmt_describe()
243 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()
272 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 Dsqlite_driver.c34 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.3/ext/pdo/
H A Dpdo.php11 $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 Dpdo_stmt.c263 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()
1782 static int generic_stmt_attr_get(pdo_stmt_t *stmt, zval *return_value, long attr) in generic_stmt_attr_get()
2249 pdo_stmt_t * stmt = (pdo_stmt_t *) zend_object_store_get_object(object TSRMLS_CC); in dbstmt_prop_write() local
2292 pdo_stmt_t *stmt = (pdo_stmt_t*)zend_object_store_get_object(object TSRMLS_CC); in dbstmt_method_get() local
2329 pdo_stmt_t *stmt; in dbstmt_clone_obj() local
2462 pdo_stmt_t *stmt; in pdo_dbstmt_new() local
2482 pdo_stmt_t *stmt; member
2547 pdo_stmt_t *stmt = I->stmt; /* for PDO_HANDLE_STMT_ERR() */ in pdo_stmt_iter_move_forwards() local
[all …]
H A Dpdo_dbh.c41 void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *sqlstate, const char *supp … in pdo_raise_impl_error()
444 static void pdo_stmt_construct(pdo_stmt_t *stmt, zval *object, zend_class_entry *dbstmt_ce, zval *c… in pdo_stmt_construct()
509 pdo_stmt_t *stmt; in PHP_METHOD() local
1080 pdo_stmt_t *stmt; in PHP_METHOD() local
/PHP-5.3/ext/pdo_odbc/
H A Dodbc_stmt.c60 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()
504 static int odbc_stmt_fetch(pdo_stmt_t *stmt, in odbc_stmt_fetch()
542 static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in odbc_stmt_describe()
609 static int odbc_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *call… in odbc_stmt_get_col()
737 static int odbc_stmt_set_param(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) in odbc_stmt_set_param()
764 static int odbc_stmt_get_attr(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) in odbc_stmt_get_attr()
H A Dodbc_driver.c34 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.3/ext/pdo_firebird/
H A Dfirebird_statement.c35 #define RECORD_ERROR(stmt) _firebird_error(NULL, stmt, __FILE__, __LINE__ TSRMLS_CC) argument
157 static int firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */ in firebird_stmt_fetch()
185 static int firebird_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */ in firebird_stmt_describe()
223 static int firebird_fetch_blob(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_fetch_blob()
300 static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{{ */ in firebird_stmt_get_col()
413 static int firebird_bind_blob(pdo_stmt_t *stmt, ISC_QUAD *blob_id, zval *param TSRMLS_DC) in firebird_bind_blob()
452 static int firebird_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, /* {{{ */ in firebird_stmt_param_hook()
635 static int firebird_stmt_set_attribute(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) /* {{{ */ in firebird_stmt_set_attribute()
656 static int firebird_stmt_get_attribute(pdo_stmt_t *stmt, long attr, zval *val TSRMLS_DC) /* {{{ */ in firebird_stmt_get_attribute()
H A Dfirebird_driver.c42 void _firebird_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, char const *file, long line TSRMLS_DC) /* {{… in _firebird_error()
138 pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC) in firebird_handle_preparer()
226 isc_stmt_handle stmt = NULL; in firebird_handle_doer() local
607 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.3/ext/mysqli/
H A Dmysqli_api.c219 MY_STMT *stmt; in PHP_FUNCTION() local
479 MY_STMT *stmt; in PHP_FUNCTION() local
760 MY_STMT *stmt; in PHP_FUNCTION() local
853 MY_STMT *stmt; local
1928 MY_STMT *stmt; local
2238 MY_STMT *stmt; local
2285 MY_STMT *stmt; local
2312 MY_STMT *stmt; local
2328 MY_STMT *stmt; local
2374 MY_STMT *stmt; local
[all …]
H A Dmysqli_priv.h147 #define MYSQLI_REPORT_STMT_ERROR(stmt) \ argument
H A Dmysqli_nonapi.c815 MY_STMT *stmt; local
865 MY_STMT *stmt; local
/PHP-5.3/ext/pdo_dblib/
H A Ddb.php14 $stmt = $db->prepare('select 10'); variable
28 $stmt = null; variable
H A Ddblib_stmt.c236 static int pdo_dblib_stmt_fetch(pdo_stmt_t *stmt,
252 static int pdo_dblib_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC)
269 static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr,
280 static int pdo_dblib_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param,
H A Ddblib_driver.c35 static int dblib_fetch_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in dblib_fetch_error()
91 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.3/ext/pdo_pgsql/
H A Dpgsql_statement.c238 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 Dpgsql_driver.c63 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.3/ext/pdo_oci/
H A Doci_statement.c261 static int oci_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param… in oci_stmt_param_hook()
434 static int oci_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, long offset TSRMLS_DC) … in oci_stmt_fetch()
498 static int oci_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */ in oci_stmt_describe()
602 pdo_stmt_t *stmt; member
653 pdo_stmt_t *stmt = self->stmt; in oci_blob_close() local
696 static php_stream *oci_create_lob_stream(pdo_stmt_t *stmt, OCILobLocator *lob TSRMLS_DC) in oci_create_lob_stream()
716 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 Doci_driver.c36 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()
249 static int oci_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zva… in oci_handle_preparer()
328 OCIStmt *stmt; in oci_handle_doer() local
/PHP-5.3/ext/sqlite/
H A Dpdo_sqlite2.c128 static int pdo_sqlite2_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, in pdo_sqlite2_stmt_param_hook()
134 static int pdo_sqlite2_stmt_fetch(pdo_stmt_t *stmt, in pdo_sqlite2_stmt_fetch()
171 static int pdo_sqlite2_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) in pdo_sqlite2_stmt_describe()
190 static int pdo_sqlite2_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, in… in pdo_sqlite2_stmt_get_col()
232 int _pdo_sqlite2_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *errmsg, const char *file, int line T… in _pdo_sqlite2_error()
299 static int pdo_sqlite2_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in pdo_sqlite2_fetch_error_func()
340 static int sqlite2_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt,… in sqlite2_handle_preparer()

Completed in 122 milliseconds

12