Searched refs:store_result (Results 1 – 20 of 20) sorted by relevance
/PHP-5.4/ext/mysqli/tests/ |
H A D | bug31668.phpt | 17 $res = $mysql->store_result(); 31 $res = $mysql->store_result();
|
H A D | bug62046.phpt | 21 if (FALSE === $stmt->store_result()) { 22 printf("[004] store_result failed, [%d] %s\n", $stmt->errorno, $stmt->error);
|
H A D | bug45289.phpt | 2 Bug #45289 (Bogus store_result on PS) 26 if ($res = $link->store_result()) {
|
H A D | 069.phpt | 15 $res = $mysql->store_result();
|
H A D | bug54221.phpt | 27 $sth = $link->store_result();
|
H A D | bug35759.phpt | 39 $stmt->store_result();
|
H A D | bug42548.phpt | 33 if ($objResult = $mysqli->store_result()) {
|
H A D | mysqli_stmt_attr_set.phpt | 79 $stmt->store_result(); 99 $stmt->store_result(); 119 $stmt->store_result();
|
H A D | bug_mysql_49406.phpt | 33 if (!$stmt->execute() || !$stmt->store_result())
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 40 'store_result' => true,
|
H A D | mysqli_stmt_bind_result_format.phpt | 299 if (!$stmt->store_result()) {
|
H A D | mysqli_class_mysqli_interface.phpt | 55 'store_result' => true,
|
H A D | mysqli_get_client_stats.phpt | 335 printf("[%03d] store_result failed, [%d] %s\n", 373 printf("[%03d] store_result failed, [%d] %s\n", 414 printf("[%03d] store_result failed, [%d] %s\n",
|
H A D | mysqli_class_mysqli_reflection.phpt | 1028 Inspecting method 'store_result'
|
/PHP-5.4/ext/mysqli/ |
H A D | mysqli_fe.c | 524 PHP_FALIAS(store_result, mysqli_store_result, arginfo_mysqli_no_params) 582 PHP_FALIAS(store_result, mysqli_stmt_store_result, arginfo_mysqli_no_params)
|
/PHP-5.4/ext/mysqlnd/ |
H A D | mysqlnd.h | 123 #define mysqlnd_store_result(conn) ((conn)->data)->m->store_result((conn)->data TSRMLS_CC) 223 …e_result(stmt) (!mysqlnd_stmt_field_count((stmt)) ? PASS:((stmt)->m->store_result((stmt) TSRMLS_C…
|
H A D | mysqlnd_structs.h | 482 func_mysqlnd_conn_data__store_result store_result; member 614 func_mysqlnd_res__store_result store_result; member 719 func_mysqlnd_stmt__store_result store_result; member
|
H A D | mysqlnd_ps.c | 57 MYSQLND_METHOD(mysqlnd_stmt, store_result)(MYSQLND_STMT * const s TSRMLS_DC) in MYSQLND_METHOD() argument 91 stmt->default_rset_handler = s->m->store_result; in MYSQLND_METHOD() 175 if ((result = result->m.store_result(result, conn, TRUE TSRMLS_CC))) { in MYSQLND_METHOD() 555 stmt->default_rset_handler = s->m->store_result; in mysqlnd_stmt_execute_parse_response() 2317 MYSQLND_METHOD(mysqlnd_stmt, store_result),
|
H A D | mysqlnd.c | 1416 result = conn->m->store_result(conn TSRMLS_CC); 2474 MYSQLND_METHOD(mysqlnd_conn_data, store_result)(MYSQLND_CONN_DATA * const conn TSRMLS_DC) argument 2476 size_t this_func = STRUCT_OFFSET(struct st_mysqlnd_conn_data_methods, store_result); 2497 result = conn->current_result->m.store_result(conn->current_result, conn, FALSE TSRMLS_CC); 2627 MYSQLND_METHOD(mysqlnd_conn_data, store_result),
|
H A D | mysqlnd_result.c | 1255 MYSQLND_METHOD(mysqlnd_res, store_result)(MYSQLND_RES * result, in MYSQLND_METHOD() argument 1648 MYSQLND_METHOD(mysqlnd_res, store_result),
|
Completed in 53 milliseconds