Searched refs:execute (Results 1 – 25 of 355) sorted by relevance
12345678910>>...15
/PHP-7.4/ext/pdo_firebird/tests/ |
H A D | bug_77863.phpt | 28 $query->execute(); 32 $query->execute(); 36 $query->execute(); 40 $query->execute(); 44 $query->execute(); 48 $query->execute(); 52 $query->execute(); 57 $query->execute(); 61 $query->execute(); 65 $query->execute(); [all …]
|
H A D | bug_62024.phpt | 26 $res = $sttmt->execute($args_ok); 29 $res = $sttmt->execute($args_err); 37 $sttmt->execute();
|
/PHP-7.4/ext/pdo_oci/tests/ |
H A D | pdo_oci_templob_1.phpt | 27 $stmt->execute(); 30 $stmt->execute(); 33 $stmt->execute(); 36 $stmt->execute(); 39 $stmt->execute(); 42 $stmt->execute(); 45 $stmt->execute(); 48 $stmt->execute(); 51 $stmt->execute(); 54 $stmt->execute(); [all …]
|
/PHP-7.4/ext/pdo_pgsql/tests/ |
H A D | disable_prepares.phpt | 21 $stmt2->execute(array(1)); 23 $stmt2->execute(array(2)); 26 $stmt->execute(); 31 $stmt3->execute(array(3)); 33 $stmt3->execute(array(4)); 36 $stmt->execute();
|
H A D | bug62593.phpt | 21 $query->execute(); 26 $query->execute(); 29 // Verify bindParam maintains reference and only passes when execute is called 33 $query->execute(); 40 $query->execute(); 46 $query->execute();
|
H A D | bug64953.phpt | 22 $st->execute(); 28 $st->execute(); 34 $st->execute(array(":int" => 123)); 38 $st->execute();
|
H A D | bug_33876.phpt | 25 if (!$res->execute()) 32 if (!$res->execute()) 40 if (!$res->execute(array(true))) 47 if (!$res->execute(array(false))) 61 if (!$res->execute()) 68 if (!$res->execute()) 76 if (!$res->execute(array(true))) 83 if (!$res->execute(array(false))) {
|
/PHP-7.4/ext/pdo/tests/ |
H A D | pdo_015.phpt | 24 $select1->execute(); 26 $select1->execute(); 28 $select1->execute(); 30 $select1->execute(); 32 $select1->execute(); 34 $select1->execute(); 36 $select1->execute(); 39 $select2->execute();
|
H A D | bug_71447.phpt | 30 $stmt->execute(); 40 $stmt->execute(); 50 $stmt->execute(); 60 $stmt->execute(); 70 $stmt->execute(); 81 $stmt->execute([1]); 92 $stmt->execute(['id' => 1]);
|
H A D | pdo_016.phpt | 30 $stmt1->execute(); 34 $stmt2->execute(); 42 $stmt2->execute(); 59 var_dump($stmt3->execute()); 63 * after execute() has been called at least once */ 69 var_dump($stmt4->execute()); 72 * after execute() has been called at least once */ 87 var_dump($stmt3->execute()); 91 var_dump($stmt4->execute()); 101 $stmt2->execute();
|
H A D | pdo_016a.phpt | 30 $stmt1->execute(); 34 $stmt2->execute(); 42 $stmt2->execute(); 59 var_dump($stmt3->execute()); 63 * after execute() has been called at least once */ 69 var_dump($stmt4->execute()); 72 * after execute() has been called at least once */ 87 var_dump($stmt3->execute()); 91 var_dump($stmt4->execute()); 101 $stmt2->execute();
|
H A D | pdo_021.phpt | 2 PDO Common: PDOStatement::execute with parameters 38 $stmt->execute($row); 40 $select->execute(); 47 $stmt2->execute(array(':first'=>($row[0] + 5), ':second'=>$row[1], 51 $select->execute();
|
H A D | pdo_029.phpt | 37 function execute($params = array()) 40 parent::execute(); 56 $stmt->execute(); 69 $stmt->execute($row); 95 PDOStatementX::execute()
|
/PHP-7.4/sapi/cli/tests/ |
H A D | 012-2.phpt | 31 string(57) "Either execute direct code, process stdin or use a file. 33 string(57) "Either execute direct code, process stdin or use a file. 36 string(57) "Either execute direct code, process stdin or use a file. 38 string(57) "Either execute direct code, process stdin or use a file. 40 string(57) "Either execute direct code, process stdin or use a file. 42 string(57) "Either execute direct code, process stdin or use a file. 44 string(57) "Either execute direct code, process stdin or use a file. 50 string(57) "Either execute direct code, process stdin or use a file.
|
/PHP-7.4/ext/pdo_mysql/tests/ |
H A D | bug80458.phpt | 24 $stmt->execute(); 31 $stmt2->execute(); 37 $stmt3->execute(); 41 $stmt->execute(); 47 $stmt4->execute(); 54 $stmt5->execute(); 65 $stmt->execute(); 72 $stmt2->execute(); 82 $stmt->execute(); 105 $stmt->execute(); [all …]
|
H A D | pecl_bug_5802.phpt | 20 $stmt->execute() or var_dump($stmt->errorInfo()); 24 $stmt->execute() or var_dump($stmt->errorInfo()); 28 $stmt->execute() or var_dump($stmt->errorInfo()); 32 if($stmt) $stmt->execute();
|
H A D | bug53551.phpt | 33 $stmt->execute($values); 37 $stmt->execute($values); 52 Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cou… 63 Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cou…
|
H A D | pdo_mysql_stmt_variable_columncount.phpt | 65 $stmt->execute(); 79 $stmt->execute(); 92 $stmt->execute(); 94 $stmt->execute(); 97 $stmt->execute(); 108 $stmt->execute(); 110 $stmt->execute(); 113 $stmt->execute();
|
H A D | pdo_mysql_prepare_native_dup_named_placeholder.phpt | 28 $stmt->execute(array(':placeholder' => 'row1')); 36 $stmt->execute(); 47 $stmt->execute(array(':placeholder' => 'row2')); 55 $stmt->execute(); 68 $stmt->execute(array(':placeholder' => 1)); 82 $stmt->execute(array(':placeholder' => 1)); 106 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number in %s on line %d 137 Warning: PDOStatement::execute(): SQLSTATE[HY093]: Invalid parameter number in %s on line %d
|
/PHP-7.4/ext/standard/tests/dir/ |
H A D | dir_variation7.phpt | 19 * remove the execute permission from the parent dir and test dir() on child dir 20 * 1) remove write & execute permission from the 1st parent and test dir() 21 * 2) remove execute permission from 2nd parent and test dir() 24 echo "*** Testing dir() : remove execute permission from the parent dir ***\n"; 45 // remove the write and execute permisson from sub parent 51 // remove the execute permisson from parent dir, allowing all permission for sub dir 77 *** Testing dir() : remove execute permission from the parent dir ***
|
/PHP-7.4/ext/mysqli/tests/ |
H A D | bug52891.phpt | 45 if (!$stmt1->execute()) 48 if (!$stmt2->execute()) 53 if (!$stmt2->execute()) 59 if (!$stmt1->execute()) 62 if (!$stmt2->execute()) 67 if (!$stmt2->execute()) 71 if (!$stmt1->execute()) 74 if (!$stmt2->execute()) 78 if (!$stmt1->execute()) 81 if (!$stmt2->execute())
|
/PHP-7.4/ext/sqlite3/tests/ |
H A D | sqlite3_bind_bug68849.phpt | 18 $r = $s->execute(); 23 $r = $s->execute(); 28 $r = $s->execute(); 33 $r = $s->execute();
|
/PHP-7.4/ext/pdo_dblib/tests/ |
H A D | timeout.phpt | 17 if ($stmt->execute()) { 25 if (!$stmt->execute()) { 38 if (!$stmt->execute()) { 50 if (!$stmt->execute()) { 62 if (!$stmt->execute()) {
|
/PHP-7.4/ext/oci8/tests/ |
H A D | bug71148.phpt | 74 // Test 3: Bind output parameter within the same scope of execute 79 echo "\nTest 3: Bind output parameter within the same scope of execute\n"; 92 // Test 4: Bind output parameter within the same scope of execute 97 echo "\nTest 4: Bind output parameter within the same scope of execute\n"; 130 // Test 6: Bind IN OUT parameter within the same scope of execute 137 echo "\nTest 6: Bind IN OUT parameter within the same scope of execute\n"; 175 Test 3: Bind output parameter within the same scope of execute 179 Test 4: Bind output parameter within the same scope of execute 187 Test 6: Bind IN OUT parameter within the same scope of execute
|
/PHP-7.4/ext/pdo_sqlite/tests/ |
H A D | bug78192.phpt | 14 $stmt->execute([ 20 $stmt->execute(['id' => 10]); 24 $stmt->execute(['id' => 10]);
|
Completed in 36 milliseconds
12345678910>>...15