Removed re-declared PDO function
This commit is contained in:
parent
a5dea630a9
commit
fb1e4e0a03
@ -134,13 +134,5 @@ abstract class DB_PDO extends PDO {
|
||||
* @return int
|
||||
*/
|
||||
abstract function num_rows();
|
||||
|
||||
/**
|
||||
* Return the number of rows affected by the last query
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
abstract function affected_rows();
|
||||
|
||||
}
|
||||
// End of db_pdo.php
|
@ -69,16 +69,6 @@ class MySQL extends DB_PDO {
|
||||
return $res->fetchAll(PDO::FETCH_ASSOC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows affected by the previous query
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
function affected_rows()
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows returned for a SELECT query
|
||||
*
|
||||
@ -88,7 +78,6 @@ class MySQL extends DB_PDO {
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class MySQL_manip extends MySQL {
|
||||
@ -97,4 +86,5 @@ class MySQL_manip extends MySQL {
|
||||
{
|
||||
parent::__construct($dsn, $user, $pass, $opt);
|
||||
}
|
||||
}
|
||||
}
|
||||
//End of mysql.php
|
@ -48,16 +48,6 @@ class ODBC extends DB_PDO {
|
||||
$this->query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows affected by the previous query
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
function affected_rows()
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows returned for a SELECT query
|
||||
*
|
||||
@ -67,7 +57,5 @@ class ODBC extends DB_PDO {
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// End of odbc.php
|
@ -93,16 +93,6 @@ class pgSQL extends DB_PDO {
|
||||
return $views;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows affected by the previous query
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
function affected_rows()
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows returned for a SELECT query
|
||||
*
|
||||
@ -112,7 +102,6 @@ class pgSQL extends DB_PDO {
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -125,4 +114,5 @@ class pgSQL_manip extends pgSQL {
|
||||
parent::__construct($dsn, $username, $password, $options);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
//End of pgsql.php
|
@ -54,16 +54,6 @@ class SQLite extends DB_PDO {
|
||||
return $res->fetchAll(PDO::FETCH_ASSOC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows affected by the previous query
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
function affected_rows()
|
||||
{
|
||||
// TODO: Implement
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of rows returned for a SELECT query
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user