You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
There is an error during constructing PDO DSN string for DBLIB under linux. The "port:" fragment is incorrect, according to the documentation the string should look like:
dblib:host=$localhost:$port;dbname=$testdb
Your script constructs it like:
dblib:host=$localhost;port=$port;dbname=$testdb
The text was updated successfully, but these errors were encountered:
Hello,
There is an error during constructing PDO DSN string for DBLIB under linux. The "port:" fragment is incorrect, according to the documentation the string should look like:
dblib:host=$localhost:$port;dbname=$testdb
Your script constructs it like:
dblib:host=$localhost;port=$port;dbname=$testdb
The text was updated successfully, but these errors were encountered: