Home
last modified time | relevance | path

Searched refs:statement (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/PHP-8.1/ext/odbc/
H A Dodbc.stub.php7 /** @param resource $statement */
10 /** @param resource $statement */
19 /** @param resource $statement */
22 /** @param resource $statement */
44 /** @param resource $statement */
47 /** @param resource $statement */
52 * @param resource $statement
57 /** @param resource $statement */
60 /** @param resource $statement */
64 * @param resource $statement
[all …]
/PHP-8.1/ext/oci8/
H A Doci8.stub.php5 /** @param resource $statement */
9 * @param resource $statement
15 /** @param resource $statement */
19 * @param resource $statement
26 * @param resource $statement
135 * @param resource $statement
145 * @param resource $statement
155 * @param resource $statement
165 * @param resource $statement
175 * @param resource $statement
[all …]
H A Doci8_statement.c124 return statement; in php_oci_statement_create()
200 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_statement_set_prefetch()
201 PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode); in php_oci_statement_set_prefetch()
259 if (statement->has_descr && statement->columns) { in php_oci_statement_fetch()
382 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_statement_fetch()
383 PHP_OCI_HANDLE_ERROR(statement->connection, statement->errcode); in php_oci_statement_fetch()
512 …DTRACE_OCI8_EXECUTE_MODE(statement->connection, statement->connection->client_id, statement, mode); in php_oci_statement_execute()
527 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_statement_execute()
555 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_statement_execute()
704 outcol->statement = statement; /* parent handle */ in php_oci_statement_execute()
[all …]
/PHP-8.1/ext/oci8/tests/
H A Dlob_022.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
24 $statement = oci_parse($c, $init);
27 oci_execute($statement, OCI_DEFAULT);
34 $statement = oci_parse($c, $init);
37 oci_execute($statement, OCI_DEFAULT);
50 $statement = oci_parse ($c, $query);
68 $statement = oci_parse($c, $drop);
[all …]
H A Dlob_016.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
24 $statement = oci_parse($c, $init);
25 oci_execute($statement);
28 $statement = oci_parse($c, $select);
31 $row = oci_fetch_assoc($statement);
44 $row = oci_fetch_assoc($statement);
51 $statement = oci_parse($c, $drop);
[all …]
H A Dlob_017.phpt18 $statement = oci_parse($c, $drop);
19 @oci_execute($statement);
22 $statement = oci_parse($c, $create);
23 oci_execute($statement);
26 $statement = oci_parse($c, $init);
27 oci_execute($statement);
30 $statement = oci_parse($c, $select);
33 $row = oci_fetch_assoc($statement);
46 $row = oci_fetch_assoc($statement);
53 $statement = oci_parse($c, $drop);
[all …]
H A Dbug51253.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
29 oci_execute($statement);
52 oci_execute($statement);
59 oci_execute($statement);
70 oci_execute($statement);
81 oci_execute($statement);
88 @oci_execute($statement);
[all …]
H A Dlob_018.phpt27 $statement = oci_parse($c, $init);
30 oci_execute($statement, OCI_DEFAULT);
36 $statement = oci_parse($c, $init);
39 oci_execute($statement, OCI_DEFAULT);
46 $statement = oci_parse ($c, $query);
47 oci_execute($statement, OCI_DEFAULT);
57 $statement = oci_parse ($c, $query);
58 oci_execute($statement, OCI_DEFAULT);
68 $statement = oci_parse($c, $init);
71 oci_execute($statement, OCI_DEFAULT);
[all …]
H A Darray_bind_014.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
48 $statement = oci_parse($c, $create_pkg_body);
49 oci_execute($statement);
53 oci_execute($statement);
58 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_INT);
[all …]
H A Darray_bind_011.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
23 $statement = oci_parse($c, $create_pkg);
24 oci_execute($statement);
46 $statement = oci_parse($c, $create_pkg_body);
47 oci_execute($statement);
49 $statement = oci_parse($c, "BEGIN array_bind_011_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_CHR);
[all …]
H A Darray_bind_float.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_float_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_FLT);
[all …]
H A Darray_bind_float1.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_float1_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_FLT);
[all …]
H A Darray_bind_int.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_int_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_NUM);
[all …]
H A Darray_bind_int1.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_int1_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_INT);
[all …]
H A Darray_bind_str.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_str_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
[all …]
H A Darray_bind_str1.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_str1_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 10, 20, SQLT_CHR);
[all …]
H A Darray_bind_date.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_date_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
[all …]
H A Darray_bind_date1.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_date1_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_ODT);
[all …]
H A Darray_bind_001.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
23 $statement = oci_parse($c, $create_pkg);
24 oci_execute($statement);
46 $statement = oci_parse($c, $create_pkg_body);
47 oci_execute($statement);
49 $statement = oci_parse($c, "BEGIN array_bind_001_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
[all …]
H A Darray_bind_005.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_005_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
[all …]
H A Darray_bind_006.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_006_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, -1, SQLT_CHR);
[all …]
H A Darray_bind_007.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
23 $statement = oci_parse($c, $create_pkg);
24 oci_execute($statement);
46 $statement = oci_parse($c, $create_pkg_body);
47 oci_execute($statement);
49 $statement = oci_parse($c, "BEGIN array_bind_007_pkg.iobind(:c1); END;");
53 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, -1);
[all …]
H A Darray_bind_008.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_008_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_CHR);
[all …]
H A Darray_bind_002.phpt11 $statement = oci_parse($c, $drop);
12 @oci_execute($statement);
15 $statement = oci_parse($c, $create);
16 oci_execute($statement);
23 $statement = oci_parse($c, $create_pkg);
24 oci_execute($statement);
46 $statement = oci_parse($c, $create_pkg_body);
47 oci_execute($statement);
49 $statement = oci_parse($c, "BEGIN array_bind_002_pkg.iobind(:c1); END;");
54 oci_bind_array_by_name($statement, ":c1", $array, 0, 0, SQLT_ODT);
[all …]
H A Darray_bind_003.phpt16 $statement = oci_parse($c, $drop);
17 @oci_execute($statement);
20 $statement = oci_parse($c, $create);
21 oci_execute($statement);
28 $statement = oci_parse($c, $create_pkg);
29 oci_execute($statement);
51 $statement = oci_parse($c, $create_pkg_body);
52 oci_execute($statement);
54 $statement = oci_parse($c, "BEGIN array_bind_003_pkg.iobind(:c1); END;");
58 oci_bind_array_by_name($statement, ":c1", $array, 5, 5, SQLT_ODT);
[all …]

Completed in 84 milliseconds

12345678910>>...13