Commit d3f3b582 authored by Rafael Dohms's avatar Rafael Dohms

Added PDO SQL Srv driver to the list since it has been in Doctrine since D2-beta2

parent 5b19ce63
......@@ -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
extension.
**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.
- ``driverClass``: Specifies a custom driver implementation if no
......@@ -130,6 +131,18 @@ pdo\_oci / oci8
- ``charset`` (string): The charset used when connecting to the
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
~~~~~~~~~~~~~~~
......
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