Home
last modified time | relevance | path

Searched refs:bound_params (Results 1 – 8 of 8) sorted by relevance

/PHP-5.5/ext/sqlite3/
H A Dphp_sqlite3_structs.h123 HashTable *bound_params; member
H A Dsqlite3.c1384 hash = stmt->bound_params;
1389 stmt->bound_params = hash;
1512 if (stmt_obj->bound_params) {
1513 zend_hash_internal_pointer_reset(stmt_obj->bound_params);
1514 while (zend_hash_get_current_data(stmt_obj->bound_params, (void **)&param) == SUCCESS) {
1518 zend_hash_move_forward(stmt_obj->bound_params);
1576 zend_hash_move_forward(stmt_obj->bound_params);
2109 if (intern->bound_params) {
2110 zend_hash_destroy(intern->bound_params);
2111 FREE_HASHTABLE(intern->bound_params);
[all …]
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_statement.c169 stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0, in pgsql_stmt_execute()
204 stmt->bound_params ? in pgsql_stmt_execute()
205 zend_hash_num_elements(stmt->bound_params) : in pgsql_stmt_execute()
297 if (param->paramno >= zend_hash_num_elements(stmt->bound_params)) { in pgsql_stmt_param_hook()
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c181 ht = stmt->bound_params; in dispatch_param_event()
240 if (stmt->bound_params) { in pdo_stmt_describe_columns()
314 stmt->bound_params = hash; in really_register_bound_param()
452 if (stmt->bound_params) { in PHP_METHOD()
454 FREE_HASHTABLE(stmt->bound_params); in PHP_METHOD()
455 stmt->bound_params = NULL; in PHP_METHOD()
2156 stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0); in PHP_METHOD()
2158 if (stmt->bound_params) { in PHP_METHOD()
2362 if (stmt->bound_params) { in free_statement()
2364 FREE_HASHTABLE(stmt->bound_params); in free_statement()
[all …]
H A Dpdo_sql_parser.c512 params = stmt->bound_params; in pdo_parse_params()
756 HashTable *params = stmt->bound_params;
H A Dphp_pdo_driver.h578 HashTable *bound_params; member
H A Dpdo_sql_parser.re154 params = stmt->bound_params;
398 HashTable *params = stmt->bound_params;
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c60 HashTable *BP = stmt->bound_params; in oci_stmt_dtor()
87 FREE_HASHTABLE(stmt->bound_params); in oci_stmt_dtor()
88 stmt->bound_params = NULL; in oci_stmt_dtor()

Completed in 34 milliseconds