summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/connect.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/connect.inc')
-rw-r--r--ext/oci8/tests/connect.inc37
1 files changed, 0 insertions, 37 deletions
diff --git a/ext/oci8/tests/connect.inc b/ext/oci8/tests/connect.inc
deleted file mode 100644
index 887c8fdaa1..0000000000
--- a/ext/oci8/tests/connect.inc
+++ /dev/null
@@ -1,37 +0,0 @@
-<?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 = '';
- }
-
-?>