Ok I saw fixes in the current trunk:

class MSSQLDialect_pymssql(MSSQLDialect):
    def make_connect_string(self, keys):
        if keys.get('port'):
            # pymssql expects port as host:port, not a separate arg
            keys['host'] = ''.join([keys.get('host', ''), ':',
str(keys['port'])])
            del keys['port']
        return [[], keys]


I guess the right separator is not ':' but ','. Grrrr just a way from
MS to disagree from standarts.


--~--~---------~--~----~------------~-------~--~----~
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