Closed doctrinebot closed 8 years ago
Comment created by @doctrinebot:
A related Github Pull-Request [GH-777] was assigned: https://github.com/doctrine/dbal/pull/777
Comment created by @doctrinebot:
A related Github Pull-Request [GH-777] was merged: https://github.com/doctrine/dbal/pull/777
Issue was closed with resolution "Fixed"
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Jira issue originally created by user @doctrinebot:
This issue is created automatically through a Github pull request on behalf of deeky666:
Url: https://github.com/doctrine/dbal/pull/777
Message:
This patch makes it possible to connect to a SQL Anywhere database without having to specify
host
and/orserver
connection parameter. The original assumption that theserver
parameter is necessary to connect to the database was wrong. It is only required if the host is running multiple named server instances and a specific instance should be connected to. Also if thehost
parameter is not specified, it will default tolocalhost
now. TheLINKS
DSN parameter was replaced by the simpler and encouragedHOST
parameter as theLINKS
parameter is only required if you want to pass specific TCP/IP options.