mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
38 lines
702 B
PHP
38 lines
702 B
PHP
<?php
|
|
|
|
/*
|
|
* Please, change user, password and dbase to match your configuration.
|
|
*
|
|
* */
|
|
|
|
$user = "system";
|
|
$password = "system";
|
|
$dbase = "oracle";
|
|
|
|
/*
|
|
* 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 = '';
|
|
}
|
|
|
|
?>
|