Re: Newbie php_dblib.dll
"James K. Lowden" <[email protected]>
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > net.c:796:tds7_get_instance_port(127.0.0.1, SUGARCRMMSSQL) ... > net.c:917:instance port is 1751 > net.c:187:Connecting to 127.0.0.1 port 1751 (TDS version 7.0) > net.c:241:tds_open_socket: connect(2) returned "Unknown error" It appears the server is not listening on the loopback address at that port for TCP connection. (Sadly, Windows seems not so set the error code such that strerror(3) can interpret it.) Perhaps: 1. the server is not listening on that interface, or 2. it's not accepting tcp/ip connections (named pipe only) > TDS reports version 0.63, > Do I / should i try and move to a later release Later releases are better, but I can't point you to a DLL. HTH. --jkl