Skip to content

Commit

Permalink
Removing Oracle driver, it will not make it to stable release. Revert…
Browse files Browse the repository at this point in the history
… this commit to bring it back for next version
  • Loading branch information
lorenzo committed Sep 3, 2011
1 parent 85d9b1a commit 89b1e54
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1,250 deletions.
3 changes: 1 addition & 2 deletions app/Config/database.php.default
Expand Up @@ -31,8 +31,7 @@
* Database/Mysql - MySQL 4 & 5,
* Database/Sqlite - SQLite (PHP5 only),
* Database/Postgres - PostgreSQL 7 and higher,
* Database/Sqlserver - Microsoft SQL Server 2005 and higher,
* Database/Oracle - Oracle 8 and higher
* Database/Sqlserver - Microsoft SQL Server 2005 and higher
*
* You can add custom database drivers (or override existing drivers) by adding the
* appropriate file to app/Model/Datasource/Database. Drivers should be named 'MyDriver.php',
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/DbConfigTask.php
Expand Up @@ -104,7 +104,7 @@ protected function _interactive() {
}
}

$driver = $this->in(__d('cake_console', 'Driver:'), array('Mysql', 'Oracle', 'Postgres', 'Sqlite', 'Sqlserver'), 'Mysql');
$driver = $this->in(__d('cake_console', 'Driver:'), array('Mysql', 'Postgres', 'Sqlite', 'Sqlserver'), 'Mysql');

$persistent = $this->in(__d('cake_console', 'Persistent Connection?'), array('y', 'n'), 'n');
if (strtolower($persistent) == 'n') {
Expand Down
3 changes: 1 addition & 2 deletions lib/Cake/Console/Templates/skel/Config/database.php.default
Expand Up @@ -31,8 +31,7 @@
* Database/Mysql - MySQL 4 & 5,
* Database/Sqlite - SQLite (PHP5 only),
* Database/Postgres - PostgreSQL 7 and higher,
* Database/Sqlserver - Microsoft SQL Server 2005 and higher,
* Database/Oracle - Oracle 8 and higher
* Database/Sqlserver - Microsoft SQL Server 2005 and higher
*
* You can add custom database drivers (or override existing drivers) by adding the
* appropriate file to app/Model/Datasource/Database. Drivers should be named 'MyDriver.php',
Expand Down

0 comments on commit 89b1e54

Please sign in to comment.