1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 08:34:20 +02:00

Finish PDO_OCI

This commit is contained in:
Jakub Vrana
2010-11-19 16:13:49 +01:00
parent 4c9044800d
commit 9b267eeceb

View File

@@ -119,9 +119,12 @@ if (isset($_GET["oracle"])) {
var $extension = "PDO_OCI";
function connect($server, $username, $password) {
$this->dsn("oci:dbname=//$server", $username, $password);
return true;
}
function select_db($database) {
return true;
}
}