1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
14
|
|
|
* |
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
16
|
|
|
* and is licensed under the MIT license. For more information, see |
17
|
|
|
* <http://www.doctrine-project.org>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace Doctrine\DBAL\Driver\SQLSrv; |
21
|
|
|
|
22
|
|
|
use Doctrine\DBAL\Driver\AbstractSQLServerDriver; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Driver for ext/sqlsrv. |
26
|
|
|
*/ |
27
|
|
|
class Driver extends AbstractSQLServerDriver |
28
|
|
|
{ |
29
|
|
|
/** |
30
|
|
|
* {@inheritdoc} |
31
|
|
|
*/ |
32
|
24 |
|
public function connect(array $params, $username = null, $password = null, array $driverOptions = []) |
33
|
|
|
{ |
34
|
24 |
|
if (!isset($params['host'])) { |
35
|
|
|
throw new SQLSrvException("Missing 'host' in configuration for sqlsrv driver."); |
36
|
|
|
} |
37
|
|
|
|
38
|
24 |
|
$serverName = $params['host']; |
39
|
24 |
|
if (isset($params['port'])) { |
40
|
24 |
|
$serverName .= ', ' . $params['port']; |
41
|
|
|
} |
42
|
|
|
|
43
|
24 |
|
if (isset($params['dbname'])) { |
44
|
24 |
|
$driverOptions['Database'] = $params['dbname']; |
45
|
|
|
} |
46
|
|
|
|
47
|
24 |
|
if (isset($params['charset'])) { |
48
|
|
|
$driverOptions['CharacterSet'] = $params['charset']; |
49
|
|
|
} |
50
|
|
|
|
51
|
24 |
|
$driverOptions['UID'] = $username; |
52
|
24 |
|
$driverOptions['PWD'] = $password; |
53
|
|
|
|
54
|
24 |
|
if (!isset($driverOptions['ReturnDatesAsStrings'])) { |
55
|
24 |
|
$driverOptions['ReturnDatesAsStrings'] = 1; |
56
|
|
|
} |
57
|
|
|
|
58
|
24 |
|
return new SQLSrvConnection($serverName, $driverOptions); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* {@inheritdoc} |
63
|
|
|
*/ |
64
|
21 |
|
public function getName() |
65
|
|
|
{ |
66
|
21 |
|
return 'sqlsrv'; |
67
|
|
|
} |
68
|
|
|
} |
69
|
|
|
|