123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- --TEST--
- Prefetch with REF cursor. Test different values for prefetch with oci_set_prefetch().
- --EXTENSIONS--
- oci8
- --SKIPIF--
- <?php require(__DIR__."/connect.inc");
- preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
- if (!(isset($matches[0]) &&
- ($matches[1] >= 10))) {
- die("skip expected output only valid when using Oracle 10g or greater database server");
- }
- preg_match('/^([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
- if (!(isset($matches[0]) &&
- (($matches[1] == 11 && $matches[2] >= 2) ||
- ($matches[1] >= 12)
- ))) {
- die("skip test expected to work only with Oracle 11gR2 or greater version of client");
- }
- ?>
- --FILE--
- <?php
- require(__DIR__."/connect.inc");
- // Creates the necessary package and tables.
- $stmtarray = array(
- "DROP TABLE refcurtest",
- "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
- "CREATE or REPLACE PACKAGE refcurpkg is
- type refcursortype is ref cursor;
- procedure open_ref_cur(cur1 out refcursortype);
- procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
- end refcurpkg;",
- "CREATE or REPLACE PACKAGE body refcurpkg is
- procedure open_ref_cur(cur1 out refcursortype) is
- begin
- open cur1 for select * from refcurtest order by c1;
- end open_ref_cur;
- procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,
- c2 out varchar2) is
- begin
- fetch cur1 into c1,c2;
- end fetch_ref_cur;
- end refcurpkg;"
- );
- oci8_test_sql_execute($c, $stmtarray);
- // Insert 500 rows into the table.
- $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
- if (!($s = oci_parse($c, $insert_sql))) {
- die("oci_parse(insert) failed!\n");
- }
- for ($i = 0; $i<=500; $i++) {
- $val2 = 'test'.$i;
- oci_bind_by_name($s,':c1',$i);
- oci_bind_by_name($s,':c2',$val2);
- if (!oci_execute($s)) {
- die("oci_execute(insert) failed!\n");
- }
- }
- // Various values for prefetch
- $pref = array(0,1,501,499,250,12345);
- foreach($pref as $value) {
- echo"-----------------------------------------------\n";
- echo "Test with Prefetch value set to $value \n";
- echo"-----------------------------------------------\n";
- $cur1 = oci_new_cursor($c);
- fetch_frm_php($c,$cur1,$value);
- fetch_frm_plsql($c,$cur1);
- }
- // Various invalid values for prefetch
- $pref = array(-12345,-1);
- foreach($pref as $value) {
- try {
- echo "-----------------------------------------------\n";
- echo "Test with Prefetch (invalid) value set to $value \n";
- echo "-----------------------------------------------\n";
- $cur1 = oci_new_cursor($c);
- fetch_frm_php($c,$cur1,$value);
- fetch_frm_plsql($c,$cur1);
- } catch(ValueError $e) {
- echo $e->getMessage(), "\n";
- }
- }
- // This function sets the prefetch count to the given $value and fetches one row .
- function fetch_frm_php($c,$cur1,$value) {
- $sql1 = "begin refcurpkg.open_ref_cur(:cur1); end;";
- $s1 = oci_parse($c,$sql1);
- if (!oci_bind_by_name($s1,":cur1",$cur1,-1,SQLT_RSET)) {
- die("oci_bind_by_name(sql1) failed!\n");
- }
- oci_execute($s1);
- oci_set_prefetch($cur1,$value);
- oci_execute($cur1);
- echo "Fetch Row from PHP\n";
- var_dump(oci_fetch_row($cur1));
- }
- // This function calls the fetch_ref_cur procedure to get the values from the REF cur.
- function fetch_frm_plsql($c,$cur1) {
- $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
- $s2 = oci_parse($c,$sql2);
- if (!oci_bind_by_name($s2,":curs1",$cur1,-1,SQLT_RSET)) {
- die("oci_bind_by_name(sql2) failed!\n");
- }
- if (!oci_bind_by_name($s2,":c1",$c1,-1,SQLT_INT)) {
- die("oci_bind_by_name(sql2) failed!\n");
- }
- if (!oci_bind_by_name($s2,":c2",$c2,20,SQLT_CHR)) {
- die("oci_bind_by_name(sql2) failed!\n");
- }
- oci_execute($s2);
- echo "Fetch Row from PL/SQL\n";
- var_dump($c1);
- var_dump($c2);
- }
- // Clean up here
- $stmtarray = array(
- "drop package refcurpkg",
- "drop table refcurtest"
- );
- oci8_test_sql_execute($c, $stmtarray);
- echo "Done\n";
- ?>
- --EXPECTF--
- -----------------------------------------------
- Test with Prefetch value set to 0
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Fetch Row from PL/SQL
- int(1)
- string(%d) "test1"
- -----------------------------------------------
- Test with Prefetch value set to 1
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Fetch Row from PL/SQL
- int(2)
- string(%d) "test2"
- -----------------------------------------------
- Test with Prefetch value set to 501
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Warning: oci_execute(): ORA-01002: %s
- ORA-06512: at "%s.REFCURPKG", line %d
- ORA-06512: at line %d in %s on line %d
- Fetch Row from PL/SQL
- int(0)
- NULL
- -----------------------------------------------
- Test with Prefetch value set to 499
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Fetch Row from PL/SQL
- int(500)
- string(%d) "test500"
- -----------------------------------------------
- Test with Prefetch value set to 250
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Fetch Row from PL/SQL
- int(251)
- string(%d) "test251"
- -----------------------------------------------
- Test with Prefetch value set to 12345
- -----------------------------------------------
- Fetch Row from PHP
- array(2) {
- [0]=>
- string(%d) "0"
- [1]=>
- string(%d) "test0"
- }
- Warning: oci_execute(): ORA-01002: %s
- ORA-06512: at "%s.REFCURPKG", line %d
- ORA-06512: at line %d in %s on line %d
- Fetch Row from PL/SQL
- int(0)
- NULL
- -----------------------------------------------
- Test with Prefetch (invalid) value set to -12345
- -----------------------------------------------
- oci_set_prefetch(): Argument #2 ($rows) must be greater than or equal to 0
- -----------------------------------------------
- Test with Prefetch (invalid) value set to -1
- -----------------------------------------------
- oci_set_prefetch(): Argument #2 ($rows) must be greater than or equal to 0
- Done
|