On Apr 23, 2007, at 1:30 PM, Paul Johnston wrote:
Hi,
Something like:
from sqlalchemy import *
import pyodbc
db = create_engine('mssql://./test', module=pyodbc)
While we're on the subject, it would be good to be able to specify the
module as a string, e.g. module_name='pyodbc' as then you could
specify
the module from a configuration framework. It would be handy to
specify
it in the URL as well, e.g. for unit tests.
we have all that. all create_engines accept a "module" argument, and
ms-sql specifically adds a "module_name" argument i believe.