mirror of
https://github.com/e107inc/e107.git
synced 2025-07-16 12:36:26 +02:00
Removed unused method
This commit is contained in:
@ -125,6 +125,13 @@
|
|||||||
return $this->update($table,$vars,$debug,$log_type,$log_remark);
|
return $this->update($table,$vars,$debug,$log_type,$log_remark);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
* @param $table
|
||||||
|
* @param string $fields
|
||||||
|
* @param string $args
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
public function db_CopyRow($table, $fields = '*', $args='')
|
public function db_CopyRow($table, $fields = '*', $args='')
|
||||||
{
|
{
|
||||||
return $this->copyRow($table,$fields,$args);
|
return $this->copyRow($table,$fields,$args);
|
||||||
|
@ -1902,12 +1902,7 @@ class e_db_pdo implements e_db
|
|||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
function db_Field($table,$fieldid="",$key="", $retinfo = FALSE)
|
|
||||||
{
|
|
||||||
return $this->field($table,$fieldid,$key, $retinfo);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
function columnCount()
|
function columnCount()
|
||||||
{
|
{
|
||||||
@ -2283,7 +2278,7 @@ class e_db_pdo implements e_db
|
|||||||
* @param bool $data
|
* @param bool $data
|
||||||
* @return bool|int|PDOStatement|resource
|
* @return bool|int|PDOStatement|resource
|
||||||
*/
|
*/
|
||||||
public function copyTable($oldtable, $newtable, $drop = FALSE, $data = FALSE)
|
public function copyTable($oldtable, $newtable, $drop = false, $data = false)
|
||||||
{
|
{
|
||||||
$old = $this->mySQLPrefix.strtolower($oldtable);
|
$old = $this->mySQLPrefix.strtolower($oldtable);
|
||||||
$new = $this->mySQLPrefix.strtolower($newtable);
|
$new = $this->mySQLPrefix.strtolower($newtable);
|
||||||
|
Reference in New Issue
Block a user