in reply to connection issues to MS SQL Server
If your DB server supports database authentication, remove the "Trusted_Connection=False" bit from your connection string. If it's using windows authentication instead, then remove the "user=...;password..." bit, and pass in undef in the user and password parameters to the DBI->connect() function. That's what I use here ... successfully.
If you're running on *NIX box, I don't know what you may have to do to make a windows authentication work. But the normal database authentication will work.
...roboticus
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: connection issues to MS SQL Server
by lsxo (Novice) on Aug 07, 2009 at 18:57 UTC | |
by roboticus (Chancellor) on Aug 09, 2009 at 21:17 UTC | |
by mje (Curate) on Aug 11, 2009 at 09:33 UTC |