bind_long_raw.phpt 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --TEST--
  2. bind LONG RAW field
  3. --SKIPIF--
  4. <?php
  5. $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
  6. require(dirname(__FILE__).'/skipif.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. require dirname(__FILE__)."/connect.inc";
  11. $stmt = oci_parse($c, "create table phptestlngraw( id number(10), fileimage long raw)");
  12. oci_execute($stmt);
  13. $stmt = oci_parse ($c, "insert into phptestlngraw (id, fileimage) values (:id, :fileimage)");
  14. $i=1;
  15. $fileimage = file_get_contents( dirname(__FILE__)."/test.gif");
  16. oci_bind_by_name( $stmt, ":id", $i, -1);
  17. oci_bind_by_name( $stmt, ":fileimage", $fileimage, -1, SQLT_LBI);
  18. oci_execute($stmt, OCI_DEFAULT);
  19. oci_commit($c);
  20. $stmt = oci_parse($c, "SELECT fileimage FROM phptestlngraw");
  21. oci_execute($stmt);
  22. $row = oci_fetch_row($stmt);
  23. var_dump(md5($row[0]));
  24. var_dump(strlen($row[0]));
  25. $stmt = oci_parse($c, "drop table phptestlngraw");
  26. oci_execute($stmt);
  27. echo "Done\n";
  28. ?>
  29. --EXPECT--
  30. string(32) "614fcbba1effb7caa27ef0ef25c27fcf"
  31. int(2523)
  32. Done