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
|
* @return int
|
||||||
*/
|
*/
|
||||||
abstract function num_rows();
|
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
|
// End of db_pdo.php
|
@ -69,16 +69,6 @@ class MySQL extends DB_PDO {
|
|||||||
return $res->fetchAll(PDO::FETCH_ASSOC);
|
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
|
* Return the number of rows returned for a SELECT query
|
||||||
*
|
*
|
||||||
@ -88,7 +78,6 @@ class MySQL extends DB_PDO {
|
|||||||
{
|
{
|
||||||
// TODO: Implement
|
// TODO: Implement
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class MySQL_manip extends MySQL {
|
class MySQL_manip extends MySQL {
|
||||||
@ -98,3 +87,4 @@ class MySQL_manip extends MySQL {
|
|||||||
parent::__construct($dsn, $user, $pass, $opt);
|
parent::__construct($dsn, $user, $pass, $opt);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//End of mysql.php
|
@ -48,16 +48,6 @@ class ODBC extends DB_PDO {
|
|||||||
$this->query($sql);
|
$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
|
* Return the number of rows returned for a SELECT query
|
||||||
*
|
*
|
||||||
@ -67,7 +57,5 @@ class ODBC extends DB_PDO {
|
|||||||
{
|
{
|
||||||
// TODO: Implement
|
// TODO: Implement
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// End of odbc.php
|
// End of odbc.php
|
@ -93,16 +93,6 @@ class pgSQL extends DB_PDO {
|
|||||||
return $views;
|
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
|
* Return the number of rows returned for a SELECT query
|
||||||
*
|
*
|
||||||
@ -112,7 +102,6 @@ class pgSQL extends DB_PDO {
|
|||||||
{
|
{
|
||||||
// TODO: Implement
|
// TODO: Implement
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -126,3 +115,4 @@ class pgSQL_manip extends pgSQL {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
//End of pgsql.php
|
@ -54,16 +54,6 @@ class SQLite extends DB_PDO {
|
|||||||
return $res->fetchAll(PDO::FETCH_ASSOC);
|
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
|
* Return the number of rows returned for a SELECT query
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user