Remove pointless constructor over-riding
This commit is contained in:
parent
7a78dc8b79
commit
af73f80558
@ -24,19 +24,6 @@
|
|||||||
*/
|
*/
|
||||||
class Firebird_Util extends DB_Util {
|
class Firebird_Util extends DB_Util {
|
||||||
|
|
||||||
/**
|
|
||||||
* Save a reference to the current connection object
|
|
||||||
*
|
|
||||||
* @param object $conn
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(&$conn)
|
|
||||||
{
|
|
||||||
parent::__construct($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convienience public function to generate sql for creating a db table
|
* Convienience public function to generate sql for creating a db table
|
||||||
*
|
*
|
||||||
|
@ -27,19 +27,6 @@
|
|||||||
*/
|
*/
|
||||||
class MySQL_Util extends DB_Util {
|
class MySQL_Util extends DB_Util {
|
||||||
|
|
||||||
/**
|
|
||||||
* Save a reference to the current connection object
|
|
||||||
*
|
|
||||||
* @param object $conn
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(&$conn)
|
|
||||||
{
|
|
||||||
parent::__construct($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convienience public function for creating a new MySQL table
|
* Convienience public function for creating a new MySQL table
|
||||||
*
|
*
|
||||||
|
@ -23,17 +23,6 @@
|
|||||||
*/
|
*/
|
||||||
class PgSQL_Util extends DB_Util {
|
class PgSQL_Util extends DB_Util {
|
||||||
|
|
||||||
/**
|
|
||||||
* Save a reference to the current connection object
|
|
||||||
*
|
|
||||||
* @param object $conn
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(&$conn)
|
|
||||||
{
|
|
||||||
parent::__construct($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database-specific method to create a new table
|
* Database-specific method to create a new table
|
||||||
*
|
*
|
||||||
|
@ -23,19 +23,6 @@
|
|||||||
*/
|
*/
|
||||||
class SQLite_Util extends DB_Util {
|
class SQLite_Util extends DB_Util {
|
||||||
|
|
||||||
/**
|
|
||||||
* Save a reference to the current connection object
|
|
||||||
*
|
|
||||||
* @param object $conn
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(&$conn)
|
|
||||||
{
|
|
||||||
parent::__construct($conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience public function to create a new table
|
* Convenience public function to create a new table
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user