php-src/ext/oci8/tests/create_type.inc
2005-12-01 13:39:48 +00:00

18 lines
380 B
PHP

<?php
if ($c) {
$ora_sql = "DROP TYPE
".$type_name."
";
$statement = OCIParse($c,$ora_sql);
@OCIExecute($statement);
$ora_sql = "CREATE TYPE ".$type_name." AS TABLE OF NUMBER(11)";
$statement = OCIParse($c,$ora_sql);
OCIExecute($statement);
}
?>