summaryrefslogtreecommitdiff
path: root/ext/dbx/tests/dbx_test.p
diff options
context:
space:
mode:
authorMarc Boeren <mboeren@php.net>2001-08-17 12:54:24 +0000
committerMarc Boeren <mboeren@php.net>2001-08-17 12:54:24 +0000
commit9a2291139269a0d463574e5e708c5a0c97c76e88 (patch)
tree08bf8ef8c5117e85b17925cbb009e9334c760d9e /ext/dbx/tests/dbx_test.p
parent03724a70e91c5e8ce13960e7f7cc2dc21b771fef (diff)
downloadphp-git-9a2291139269a0d463574e5e708c5a0c97c76e88.tar.gz
Added preliminary support framework for Oracle 8. (Mc)
Thies C. Arntzen will look into this to actually make it work, as I don't have Oracle installed here. As I said, it is only a framework for Oracle, and it will most likely crash if you actually try to use the oracle functions before Thies (or anyone else that wants to, of course) has had a chance to look at it. # The other databases will continue to work, of course :)
Diffstat (limited to 'ext/dbx/tests/dbx_test.p')
-rw-r--r--ext/dbx/tests/dbx_test.p8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/dbx/tests/dbx_test.p b/ext/dbx/tests/dbx_test.p
index e1ad7fa8aa..b7a7bc5027 100644
--- a/ext/dbx/tests/dbx_test.p
+++ b/ext/dbx/tests/dbx_test.p
@@ -41,6 +41,14 @@ switch ($connection) {
$password="dbx_testpassword";
$module_name="fbsql";
break;
+ case DBX_OCI8:
+ $module=DBX_OCI8;
+ $host="";
+ $database="dbx_test";
+ $username="dbx_testuser";
+ $password="dbx_testpassword";
+ $module_name="oci8";
+ break;
}
?> \ No newline at end of file