mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
Added Macports locations to README
This commit is contained in:
parent
05e706ea18
commit
e752144a6e
@ -40,11 +40,11 @@ If this is the case, you'll need to declare the instance name when setting the s
|
|||||||
|
|
||||||
*Q: I'm getting unicode SQL Server errors connecting to SQL Server database (e.g. Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier)*
|
*Q: I'm getting unicode SQL Server errors connecting to SQL Server database (e.g. Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier)*
|
||||||
|
|
||||||
A: If you are using FreeTDS make sure you're using TDS version 8.0 in **/etc/freetds/freetds.conf** (or wherever it's installed). If on Windows, ensure you use the [SQL Server Driver for PHP](http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=ccdf728b-1ea0-48a8-a84a-5052214caad9) and **NOT** the mssql drivers provided by PHP.
|
A: If you are using FreeTDS make sure you're using TDS version 8.0 in **freetds.conf**. If on Windows, ensure you use the [SQL Server Driver for PHP](http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=ccdf728b-1ea0-48a8-a84a-5052214caad9) and **NOT** the mssql drivers provided by PHP.
|
||||||
|
|
||||||
*Q: Using FreeTDS I can't connect to my SQL Server database. An error in PHP says the server doesn't exist*
|
*Q: Using FreeTDS I can't connect to my SQL Server database. An error in PHP says the server doesn't exist*
|
||||||
|
|
||||||
A: Make sure you've got an entry in **/etc/freetds/freetds.conf** (or wheverever it's installed) that points to your server. For example:
|
A: Make sure you've got an entry in **/etc/freetds/freetds.conf** that points to your server. For example:
|
||||||
|
|
||||||
[myserver]
|
[myserver]
|
||||||
host = myserver.mydomain.com
|
host = myserver.mydomain.com
|
||||||
@ -52,6 +52,7 @@ A: Make sure you've got an entry in **/etc/freetds/freetds.conf** (or wheverever
|
|||||||
tds version = 8.0
|
tds version = 8.0
|
||||||
|
|
||||||
Then you can use "myserver" (the bit in square brackets above) as the server name when connecting to the database.
|
Then you can use "myserver" (the bit in square brackets above) as the server name when connecting to the database.
|
||||||
|
Note that if you're running Macports, the file is located in **/opt/local/etc/freetds/freetds.conf**.
|
||||||
|
|
||||||
Alternatively, if you don't want to keep adding more entries to the freetds.conf to nominate more SQL Server locations,
|
Alternatively, if you don't want to keep adding more entries to the freetds.conf to nominate more SQL Server locations,
|
||||||
you can instead use the full the host/ip and port combination, such as "myserver:1433" (1433 being the default SQL Server port.)
|
you can instead use the full the host/ip and port combination, such as "myserver:1433" (1433 being the default SQL Server port.)
|
||||||
|
Loading…
Reference in New Issue
Block a user