Current Articles | RSS Feed
Today I was trying to install pymssql using the automated installer. When I ran python and imported pymssql I received an error: "ImportError: DLL load failed: The specified module could not be found."
Turns out that I needed a newer version of ntwdblib.dll The folks at UserScape had made this DLL available here. I downloaded it into my python26/Lib/site-packages folder, overwrote the existing ntwdblib.dll, and then it worked.
Googling around for the answer was not easy, so I'm posting this in case other searchers run into this problem.