1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 14:16:39 +02:00

added: throw new DibiException(__METHOD__ . ' is not implemented')

This commit is contained in:
David Grudl
2007-08-28 22:25:01 +00:00
parent 6f4d2c545d
commit d5e6cedddb
7 changed files with 10 additions and 11 deletions

View File

@@ -100,7 +100,7 @@ class DibiMSSqlDriver extends DibiDriver
public function insertId()
{
return FALSE;
throw new DibiException(__METHOD__ . ' is not implemented');
}
@@ -155,7 +155,7 @@ class DibiMSSqlDriver extends DibiDriver
public function getMetaData()
{
trigger_error('Meta is not implemented yet.', E_USER_WARNING);
throw new DibiException(__METHOD__ . ' is not implemented');
}