php-src/ext/oci8/tests/connect.inc
2006-12-12 12:57:02 +00:00

31 lines
565 B
PHP

<?php
include "details.inc";
/*
* You should have privileges to create tables in this schema
*
* */
/*
$schema = "system";
*/
$table_name = "tb".substr(str_replace(Array(".", "-"), "_", php_uname("n")), 0, 5);
$type_name = strtoupper("tp".substr(str_replace(Array(".", "-"), "_", php_uname("n")), 0, 5));
if (!empty($dbase)) {
$c = ocilogon($user,$password,$dbase);
}
else {
$c = ocilogon($user,$password);
}
if (!empty($schema)) {
$schema = $schema.".";
}
else {
$schema = '';
}
?>