MSSQL 클래스 추가 (미완성이지만 XE Core 분리를 위해서 사용하지 못하게 한 후 추가)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6689 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-07-10 06:18:33 +00:00
parent c323962382
commit 1193d5e152
4 changed files with 795 additions and 0 deletions

View file

@ -547,6 +547,7 @@
if(function_exists('ibase_connect')) $result[] = 'FireBird';
if(function_exists('pg_connect')) $result[] = 'Postgre';
if(function_exists('sqlite_open')) $result[] = 'sqlite2';
if(function_exists('mssql_connect')) $result[] = 'MSSQL';
if(function_exists('PDO')) $result[] = 'sqlite3(PDO)';
return $result;
}