On Nov 7, 2009, at 12:53 PM, Jon Nelson wrote: >> >> have you asked about this on the psycopg2 mailing list ? its at >> http://mail.python.org/mailman/listinfo/python-list >> . Let me know if you do, because I'll get out the popcorn... :) > > That's the python list.
oops: http://lists.initd.org/mailman/listinfo/psycopg > > I tried pg8000 but I got an error: > > ... > > return self.dbapi.connect(*cargs, **cparams) > sqlalchemy.exc.DBAPIError: (TypeError) connect() takes at least 1 > non-keyword argument (0 given) None None i can't reproduce that. this is with the latest trunk: from sqlalchemy import * e = create_engine('postgresql+pg8000://scott:ti...@localhost/test') print e.execute("select 1").fetchall() produces: [(1,)] --~--~---------~--~----~------------~-------~--~----~ 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 sqlalchemy+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---