Файл: concrete5.7.5.6/concrete/src/Database/Driver/PDOStatement.php
Строк: 26
<?php
namespace ConcreteCoreDatabaseDriver;
/**
* The PDO implementation of the Statement interface.
* Used by all PDO-based drivers.
*
* @since 2.0
*/
class PDOStatement extends DoctrineDBALDriverPDOStatement
{
/**
* @deprecated
* alias to old ADODB result method
*/
public function fetchRow()
{
return $this->fetch();
}
/**
* @deprecated
* alias to old ADODB method
*/
public function Close()
{
return $this->closeCursor();
}
/**
* @deprecated
* alias to old ADODB method
*/
public function free()
{
return $this->closeCursor();
}
/**
* @deprecated
* alias to old ADODB result method
*/
public function numRows()
{
return $this->rowCount();
}
}