Searched refs:num_params (Results 1 – 12 of 12) sorted by relevance
/php-src/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_limits.phpt | 16 function bind_many($offset, $link, $num_params, $rows, $eval = true) { 25 for ($i = 0; $i < $num_params; $i++) { 35 $stmt_types = str_repeat("i", $num_params * $rows); 43 printf("Testing %d columns with %d rows...\n", $num_params, $rows); 55 if ($stmt->param_count != $num_params * $rows) { 56 …printf("[%03d + 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stm… 69 for ($j = 0; $j < $num_params; $j++) 77 if ($stmt->param_count != $num_params * $rows) { 78 …printf("[%03d + 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stm… 98 for ($i = 0; $i < $num_params; $i++) {
|
H A D | fake_server.inc | 268 $pr1->num_params = '0000';
|
/php-src/scripts/dev/ |
H A D | find_tested.php | 27 $num_params = $argc; variable 28 if ($num_params < 2 || $num_params > 3) { 34 if ($num_params == 3) {
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_prepare_emulated_anonymous_placeholders.phpt | 126 for ($num_params = 2; $num_params < 100; $num_params++) { 128 for ($i = 1; $i < $num_params; $i++) {
|
H A D | pdo_mysql_prepare_native.phpt | 136 for ($num_params = 2; $num_params < 100; $num_params++) { 138 for ($i = 1; $i < $num_params; $i++) {
|
H A D | pdo_mysql_prepare_emulated.phpt | 126 for ($num_params = 2; $num_params < 100; $num_params++) { 128 for ($i = 1; $i < $num_params; $i++) {
|
H A D | pdo_mysql_prepare_native_anonymous_placeholder.phpt | 125 for ($num_params = 2; $num_params < 100; $num_params++) { 127 for ($i = 1; $i < $num_params; $i++) {
|
/php-src/ext/pgsql/ |
H A D | pgsql.c | 1202 if (num_params > 0) { in _php_pgsql_free_params() 1204 for (i = 0; i < num_params; i++) { in _php_pgsql_free_params() 1221 int num_params = 0; in PHP_FUNCTION() local 1263 if (num_params > 0) { in PHP_FUNCTION() 1299 _php_pgsql_free_params(params, num_params); in PHP_FUNCTION() 1417 int num_params = 0; in PHP_FUNCTION() local 1459 if (num_params > 0) { in PHP_FUNCTION() 3967 int num_params = 0; in PHP_FUNCTION() local 3998 if (num_params > 0) { in PHP_FUNCTION() 4138 int num_params = 0; in PHP_FUNCTION() local [all …]
|
/php-src/ext/pdo_mysql/ |
H A D | mysql_driver.c | 232 S->num_params = mysql_stmt_param_count(S->stmt); in mysql_handle_preparer() 234 if (S->num_params) { in mysql_handle_preparer() 238 S->params = ecalloc(S->num_params, sizeof(MYSQL_BIND)); in mysql_handle_preparer() 239 S->in_null = ecalloc(S->num_params, sizeof(my_bool)); in mysql_handle_preparer() 240 S->in_length = ecalloc(S->num_params, sizeof(zend_ulong)); in mysql_handle_preparer()
|
H A D | php_pdo_mysql_int.h | 131 int num_params; member
|
H A D | mysql_statement.c | 274 memset(S->params, 0, S->num_params * sizeof(MYSQL_BIND)); in pdo_mysql_stmt_execute_prepared_libmysql() 320 if (num_bound_params < (uint32_t) S->num_params) { in pdo_mysql_stmt_execute() 400 if (param->paramno < 0 || param->paramno >= S->num_params) { in pdo_mysql_stmt_param_hook()
|
/php-src/ext/soap/ |
H A D | soap.c | 40 uint32_t num_params; member 1268 uint32_t num_params = 0; in PHP_METHOD() local 1569 call_status = call_user_function(NULL, soap_obj, &function_name, &retval, num_params, params); in PHP_METHOD() 1691 i = h->num_params; in PHP_METHOD() 1704 if (num_params > 0) { in PHP_METHOD() 1705 for (i = 0; i < num_params;i++) { in PHP_METHOD() 3016 *num_params = num_of_params; in deserialize_parameters() 3069 (*num_params) = num_of_params; in deserialize_parameters() 3370 h->num_params = 1; in deserialize_function_call() 3380 deserialize_parameters(hdr_func, h->function, &h->num_params, &h->parameters); in deserialize_function_call() [all …]
|
Completed in 52 milliseconds