1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-11 00:24:19 +02:00

Adding reflector code for MSSQL.

This commit is contained in:
Steven Bredenberg
2011-05-10 12:09:52 -04:00
committed by David Grudl
parent 3288b38b6c
commit 9bc53109a0
2 changed files with 233 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
* the file license.txt that was distributed with this source code.
*/
require_once dirname(__FILE__) . '/mssql.reflector.php';
/**
* The dibi driver for MS SQL database.
@@ -187,7 +188,7 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
*/
public function getReflector()
{
throw new DibiNotSupportedException;
return new DibiMsSqlReflector($this);
}