19 declare(strict_types=1);
48 return $this->pdo_statement->fetch(PDO::FETCH_ASSOC);
52 return $this->pdo_statement->fetch(PDO::FETCH_OBJ);
55 throw new ilDatabaseException(
"No valid fetch mode given, choose ilDBConstants::FETCHMODE_ASSOC or ilDBConstants::FETCHMODE_OBJECT");
73 $this->pdo_statement->closeCursor();
79 return $this->pdo_statement->rowCount();
97 return $this->pdo_statement->rowCount();
103 $this->pdo_statement->execute($a_data);
110 return $this->pdo_statement->errorCode();
115 return $this->pdo_statement->errorInfo();
fetch(int $fetch_mode=ilDBConstants::FETCHMODE_ASSOC)
__construct(PDOStatement $pdo_statement)
execute(array $a_data=null)
Class ilPDOStatement is a Wrapper Class for PDOStatement.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
PDOStatement $pdo_statement
closeCursor()
Pdo allows for a manual closing of the cursor.
fetchRow(int $fetch_mode=ilDBConstants::FETCHMODE_ASSOC)