Extends
lithium\data\source\Database
Retrieves database error message and error code.
Returns
arraySource
public function error() {
if ($this->connection->lastErrorMsg()) {
return array($this->connection->lastErrorCode(), $this->connection->lastErrorMsg());
}
}