Home
last modified time | relevance | path

Searched refs:statement (Results 51 – 75 of 319) sorted by relevance

12345678910>>...13

/PHP-7.0/ext/oci8/tests/
H A Dcoll_009_func.phpt17 $statement = OCIParse($c,$ora_sql);
18 @OCIExecute($statement);
22 $statement = OCIParse($c,$ora_sql);
23 OCIExecute($statement);
H A Dlob_011.phpt21 $statement = oci_parse($c,$ora_sql);
23 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
24 oci_execute($statement, OCI_DEFAULT);
36 $statement = oci_parse($c,$ora_sql);
38 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
39 oci_execute($statement, OCI_DEFAULT);
H A Dcoll_009.phpt17 $statement = OCIParse($c,$ora_sql);
18 @OCIExecute($statement);
22 $statement = OCIParse($c,$ora_sql);
23 OCIExecute($statement);
H A Darray_bind_010.phpt10 $statement = oci_parse($c, 'SELECT user FROM all_objects');
14 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_CHR);
16 oci_execute($statement);
H A Darray_bind_012.phpt10 $statement = oci_parse($c, 'SELECT user FROM all_objects');
14 oci_bind_array_by_name($statement, ":c1", $array, 5, -10, SQLT_CHR);
16 oci_execute($statement);
H A Dlob_001.phpt24 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (1, empty_blob()) returning b1 …
26 var_dump(oci_bind_by_name($statement, ":v_b1", $blob, -1, OCI_B_BLOB));
27 oci_execute($statement, OCI_DEFAULT);
48 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (2, empty_blob()) returning b1 …
50 var_dump(oci_bind_by_name($statement, ":v_b1", $blob, -1, SQLT_BLOB));
51 oci_execute($statement, OCI_DEFAULT);
H A Derror_bind.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
44 $statement = oci_parse($c, $drop);
45 @oci_execute($statement);
H A Ddrop_type.inc4 $statement = oci_parse($c,$ora_sql);
5 oci_execute($statement);
H A Ddrop_table.inc4 $statement = oci_parse($c,$ora_sql);
5 oci_execute($statement);
H A Dcoll_016.phpt17 $statement = OCIParse($c,$ora_sql);
18 @OCIExecute($statement);
22 $statement = OCIParse($c,$ora_sql);
23 OCIExecute($statement);
H A Dcoll_016_func.phpt17 $statement = OCIParse($c,$ora_sql);
18 @OCIExecute($statement);
22 $statement = OCIParse($c,$ora_sql);
23 OCIExecute($statement);
H A Dlob_041.phpt2 Check LOBS are valid after statement free
23 echo "Test 1 - explicit statement close\n";
34 echo "\nTest 2 - implicit statement close\n";
68 Test 1 - explicit statement close
71 Test 2 - implicit statement close
H A Dbind_empty.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
88 $statement = oci_parse($c, $drop);
89 @oci_execute($statement);
H A Dlob_032.phpt21 $statement = oci_parse($c,$ora_sql);
23 oci_bind_by_name($statement,":v_clob", $clob,-1,OCI_B_CLOB);
24 oci_execute($statement, OCI_DEFAULT);
H A Dlob_035.phpt21 $statement = oci_parse($c,$ora_sql);
23 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
24 oci_execute($statement, OCI_DEFAULT);
36 $statement = oci_parse($c,$ora_sql);
38 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
39 oci_execute($statement, OCI_DEFAULT);
H A Dlob_temp2.phpt20 $statement = oci_parse($c, $ora_sql);
21 oci_bind_by_name($statement, ":v_clob", $clob, -1, OCI_B_CLOB);
22 oci_execute($statement, OCI_DEFAULT);
H A Dlob_033.phpt21 $statement = oci_parse($c,$ora_sql);
26 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
27 oci_execute($statement, OCI_DEFAULT);
H A Dlob_010.phpt21 $statement = oci_parse($c,$ora_sql);
23 oci_bind_by_name($statement,":v_blob", $blob,-1,OCI_B_BLOB);
24 oci_execute($statement, OCI_DEFAULT);
/PHP-7.0/Zend/tests/
H A Dns_033.phpt2 033: Import statement with non-compound name
8 Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
10 Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3
H A Ddeclare_005.phpt2 Testing declare statement with ticks
11 $statement;
/PHP-7.0/ext/oci8/
H A Dphp_oci8_int.h249 OCIStmt *statement; /* used for binding REFCURSORs */ member
375 #define PHP_OCI_ZVAL_TO_STATEMENT(zval, statement) \ argument
401 #define PHP_OCI_ZVAL_TO_STATEMENT_EX(zval, statement) \ argument
486 php_oci_statement *php_oci_get_implicit_resultset(php_oci_statement *statement);
487 int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch);
488 int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows);
490 int php_oci_statement_execute(php_oci_statement *statement, ub4 mode);
491 int php_oci_statement_cancel(php_oci_statement *statement);
492 void php_oci_statement_free(php_oci_statement *statement);
500 int php_oci_statement_get_type(php_oci_statement *statement, ub2 *type);
[all …]
/PHP-7.0/ext/standard/tests/array/
H A Darray_filter_variation7.phpt19 echo "Anonymous callback function with regular parameter and statement\n";
30 // anonymous callback function with argument and null statement
31 echo "Anonymous callback function with regular argument and null statement\n";
38 Anonymous callback function with regular parameter and statement
77 Anonymous callback function with regular argument and null statement
/PHP-7.0/scripts/dev/generate-phpt/src/testcase/
H A DgtTestCase.php112 foreach($conStatements as $statement) {
113 $this->testCase[] = $statement;
135 foreach($statements as $statement) {
136 $this->testCase[] = $statement;
/PHP-7.0/ext/pdo/tests/
H A Dbug_69356.phpt20 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
24 … only dumps the parameters in the statement at the moment of the dump. Extra parameters are not st…
32 …Dumps the informations contained by a prepared statement directly on the output. It will provide t…
36 … only dumps the parameters in the statement at the moment of the dump. Extra parameters are not st…
/PHP-7.0/ext/mysqli/tests/
H A Dbug69899.phpt5 free_result is called on a prepared statement followed by closing that
6 statement. This is due to mysqlnd_stmt::free_result (mysqlnd_ps.c) which
7 unconditionally sets the connection of the statement to ready, despite the fact

Completed in 132 milliseconds

12345678910>>...13