Corrected misnamed get_dbs() methods
This commit is contained in:
parent
9808bdcbac
commit
f9b4e5128a
@ -67,14 +67,13 @@ class firebird {
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all the databases for the current connection
|
||||
* List tables for the current database
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
function get_dbs()
|
||||
{
|
||||
// I don't think this is possible with Firebird
|
||||
return FALSE;
|
||||
function get_tables()
|
||||
{
|
||||
//TODO: implement
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -49,11 +49,11 @@ class MySQL extends DB_PDO {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the datbases available for the current connection
|
||||
* Returns the tables available in the current database
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function get_dbs()
|
||||
function get_tables()
|
||||
{
|
||||
$sql = "SHOW TABLES";
|
||||
$res = $this->query($sql);
|
||||
|
@ -26,7 +26,16 @@ class ODBC extends DB_PDO {
|
||||
parent::__construct("odbc:$dsn", $username, $password, $options);
|
||||
}
|
||||
|
||||
function get_dbs(){}
|
||||
/**
|
||||
* List tables for the current database
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
function get_tables()
|
||||
{
|
||||
//Not possible reliably with this driver
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -44,11 +44,11 @@ class pgSQL extends DB_PDO {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of databases for the current db connection
|
||||
* Get the list of tables for the current db
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function get_dbs()
|
||||
function get_tables()
|
||||
{
|
||||
$sql = 'SELECT "tablename" FROM "pg_tables"
|
||||
WHERE "tablename" NOT LIKE pg\_%
|
||||
@ -62,7 +62,7 @@ class pgSQL extends DB_PDO {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of views for the current db connection
|
||||
* Get a list of views for the current db
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
|
@ -44,14 +44,13 @@ class SQLite extends DB_PDO {
|
||||
}
|
||||
|
||||
/**
|
||||
* List databases for the current connection
|
||||
* List tables for the current database
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
function get_dbs()
|
||||
function get_tables()
|
||||
{
|
||||
// SQLite doesn't have a way of doing this
|
||||
return FALSE;
|
||||
//TODO: implement
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user