1 |
efrain |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Microsoft SQL Server 2012 driver via ODBC
|
|
|
4 |
*
|
|
|
5 |
* This file is part of ADOdb, a Database Abstraction Layer library for PHP.
|
|
|
6 |
*
|
|
|
7 |
* @package ADOdb
|
|
|
8 |
* @link https://adodb.org Project's web site and documentation
|
|
|
9 |
* @link https://github.com/ADOdb/ADOdb Source code and issue tracker
|
|
|
10 |
*
|
|
|
11 |
* The ADOdb Library is dual-licensed, released under both the BSD 3-Clause
|
|
|
12 |
* and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option,
|
|
|
13 |
* any later version. This means you can use it in proprietary products.
|
|
|
14 |
* See the LICENSE.md file distributed with this source code for details.
|
|
|
15 |
* @license BSD-3-Clause
|
|
|
16 |
* @license LGPL-2.1-or-later
|
|
|
17 |
*
|
|
|
18 |
* @copyright 2000-2013 John Lim
|
|
|
19 |
* @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community
|
|
|
20 |
*/
|
|
|
21 |
|
|
|
22 |
if (!defined('ADODB_DIR'))
|
|
|
23 |
die();
|
|
|
24 |
|
|
|
25 |
include_once(ADODB_DIR."/drivers/adodb-odbc_mssql.inc.php");
|
|
|
26 |
|
|
|
27 |
class ADODB_odbc_mssql2012 extends ADODB_odbc_mssql
|
|
|
28 |
{
|
|
|
29 |
/**
|
|
|
30 |
* Makes behavior similar to prior versions of SQL Server.
|
|
|
31 |
* @var string SQL statement executed after successful connection.
|
|
|
32 |
*/
|
|
|
33 |
public $connectStmt = 'SET CONCAT_NULL_YIELDS_NULL ON';
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
class ADORecordSet_odbc_mssql2012 extends ADORecordSet_odbc_mssql
|
|
|
37 |
{
|
|
|
38 |
}
|