Make Database into abstract class DatabaseBase
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 12 Jun 2009 17:59:04 +0000 (17:59 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 12 Jun 2009 17:59:04 +0000 (17:59 +0000)
commitd20794df5c15333c54b80120c97ae51b78d37047
tree7dd6d1cfc34038d91c6d5ce85f0d7a87f4d40b00
parent13138bc39c6fc0006dbbbaa620eec02cf5918a1f
Make Database into abstract class DatabaseBase

All other databases were changed to extend DatabaseBase instead of
Database.  Database was kept as an alias for DatabaseMysql for
compatibility.  Existing explicit references to Database that I could
find were changed to DatabaseMysql for the sake of clarity.

Should cause no functional changes.
includes/AutoLoader.php
includes/db/Database.php
includes/db/DatabaseIbm_db2.php
includes/db/DatabaseMssql.php
includes/db/DatabaseOracle.php
includes/db/DatabasePostgres.php
includes/db/DatabaseSqlite.php
t/inc/Database.t
tests/MediaWiki_TestCase.php