>
>   e = sqlalchemy.create_engine("mssql://xxx:[EMAIL 
> PROTECTED]:1433/xx?driver=TDS&odbc_options='TDS_Version=8.0'")

here is a patch to mssql.py that makes above line work.

805c805,808
<             connectors.append(keys.pop('odbc_options'))
---
>             odbc_options=keys.pop('odbc_options')
>             if odbc_options[0]=="'" and odbc_options[-1]=="'":
>                 odbc_options=odbc_options[1:-1]
>             connectors.append(odbc_options)

Could you guys add it in to svn.

Thanks,
Lucas

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to