[Sqlalchemy-users] getting extra engine params from url

2006-05-30 Thread Brad Clements
I am trying to figure out how to get extra engine specific params from the db url. What I'd like is a url object that populates the standard attributes: self.drivername = drivername self.username = username self.password = password self.host = host

Re: [Sqlalchemy-users] getting extra engine params from url

2006-05-30 Thread Michael Bayer
usually additional params that are specific to a certain database implementation are passed through as keyword arguments to create_engine(): x = create_engine('driver://user:[EMAIL PROTECTED]/db', do_this=True, do_that=False) the **kwargs of create_engine are passed to the constructor of the

Re: [Sqlalchemy-users] getting extra engine params from url

2006-05-30 Thread Luís Bruno
Brad Clements wrote: Michael Bayer wrote: this keeps the URLs completely consistent and provides a nice separation of db-specific vs. db-agnostic. Yeah, but then there's no way I can use sqlalchemy in a generic and non-database specific way via WSGI using PasteDeploy Well, maybe I'm giving