connect.inc

来自「PHP v6.0 For Linux 运行环境:Win9X/ WinME/ Wi」· INC 代码 · 共 38 行

INC
38
字号
<?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 = '';    }?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?