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.inc39
1 files changed, 0 insertions, 39 deletions
diff --git a/ext/oci8/tests/connect.inc b/ext/oci8/tests/connect.inc
deleted file mode 100644
index a0013e20d7..0000000000
--- a/ext/oci8/tests/connect.inc
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-/*
- * Please, change user, password and dbase to match your configuration.
- *
- * */
-
-$user = "user";
-$password = "pass";
-$dbase = "base";
-
-/*
- * You should have privileges to create tables in this schema
- *
- * */
-
-$schema = "system";
-
-/*
- * Remove the last line in skipif.inc to run tests
- *
- * */
-
-
- if (!empty($dbase)) {
- $connection = ocilogon($user,$password,$dbase);
- }
- else {
- $connection = ocilogon($user,$password);
- }
-
- if (!empty($schema)) {
- $schema = $schema.".";
- }
- else {
- $schema = '';
- }
-
-?>