summaryrefslogtreecommitdiff
path: root/drivers/adodb-odbc_mssql2012.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/adodb-odbc_mssql2012.inc.php')
-rw-r--r--drivers/adodb-odbc_mssql2012.inc.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/adodb-odbc_mssql2012.inc.php b/drivers/adodb-odbc_mssql2012.inc.php
new file mode 100644
index 00000000..a3b7f69f
--- /dev/null
+++ b/drivers/adodb-odbc_mssql2012.inc.php
@@ -0,0 +1,28 @@
+<?php
+/*
+ @version v5.21.0-dev ??-???-2016
+ @copyright (c) 2015 Damien Regad, Mark Newnham and the ADOdb community
+ Released under both BSD license and Lesser GPL library license.
+ Whenever there is any discrepancy between the two licenses,
+ the BSD license will take precedence.
+ Set tabs to 4.
+
+ Microsoft SQL Server 2012 via ODBC
+*/
+
+if (!defined('ADODB_DIR'))
+ die();
+
+include_once(ADODB_DIR."/drivers/adodb-odbc_mssql.inc.php");
+
+class ADODB_odbc_mssql2012 extends ADODB_odbc_mssql
+{
+ /*
+ * Makes behavior similar to prior versions of SQL Server
+ */
+ var $connectStmt = 'SET CONCAT_NULL_YIELDS_NULL ON';
+}
+
+class ADORecordSet_odbc_mssql2012 extends ADORecordSet_odbc_mssql
+{
+} \ No newline at end of file