Add pass-through for PDO ErrorInfo() method.

This commit is contained in:
Andrew McMillan 2009-12-28 00:23:07 +13:00
parent 583cd5e1f2
commit 4fc13bcb6f

View File

@ -147,6 +147,14 @@ class AwlDatabase extends AwlDBDialect {
function TranslateAll( $onoff_boolean ) {
}
/**
*
*/
function ErrorInfo() {
return $this->db->errorInfo();
}
}