Commit b013f1b4 authored by Guilherme Blanco's avatar Guilherme Blanco

Merged pull request #2 from rdohms/patch-1.

Added PDO SQL Srv driver to the list
parents 5b19ce63 d3f3b582
...@@ -47,6 +47,7 @@ interfaces to use. It can be configured in one of three ways: ...@@ -47,6 +47,7 @@ interfaces to use. It can be configured in one of three ways:
- ``pdo_oci``: An Oracle driver that uses the pdo\_oci PDO - ``pdo_oci``: An Oracle driver that uses the pdo\_oci PDO
extension. extension.
**Note that this driver caused problems in our tests. Prefer the oci8 driver if possible.** **Note that this driver caused problems in our tests. Prefer the oci8 driver if possible.**
- ``pdo_sqlsrv``: An MSSQL driver that uses pdo\_sqlsrv PDO
- ``oci8``:\` An Oracle driver that uses the oci8 PHP extension. - ``oci8``:\` An Oracle driver that uses the oci8 PHP extension.
- ``driverClass``: Specifies a custom driver implementation if no - ``driverClass``: Specifies a custom driver implementation if no
...@@ -130,6 +131,18 @@ pdo\_oci / oci8 ...@@ -130,6 +131,18 @@ pdo\_oci / oci8
- ``charset`` (string): The charset used when connecting to the - ``charset`` (string): The charset used when connecting to the
database. database.
pdo\_sqlsrv
^^^^^^^^^^
- ``user`` (string): Username to use when connecting to the
database.
- ``password`` (string): Password to use when connecting to the
database.
- ``host`` (string): Hostname of the database to connect to.
- ``port`` (integer): Port of the database to connect to.
- ``dbname`` (string): Name of the database/schema to connect to.
Custom Platform Custom Platform
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment