1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/oci8/tests/create_table.inc

14 lines
257 B
PHP

<?php
if ($c) {
$stmtarray = array(
"DROP TABLE ".$schema.$table_name,
"CREATE TABLE ".$schema.$table_name." (id NUMBER, value NUMBER, blob BLOB, clob CLOB, string VARCHAR(10))"
);
oci8_test_sql_execute($c, $stmtarray);
}
?>