Contents ../ lithium\data\source\database\adapter\Sqlite3::error() Implements lithium\data\source\Database::error() public method Retrieves database error message and error code. Returns array Source public function error() { if ($error = $this->connection->errorInfo()) { return [$error[1], $error[2]]; } }