> > btw around probing dbcook on 0.4, i got some sort of statistical
> > idea of what is used often, some in a frightening repeatable
> > pattern:
> >
> > from sqlalchemy import *
> > db = create_engine('url')
> > meta = MetaData(db)
> >
> > and just then all else follows... in 90% of my files.
> > i can make some module sqlalchemy4lazy.py that contains above...
> >
> > can the Catalog() construct from url directly? one line less...
>
> Current metadata can do that.
yeah... if it could relay all other kwargs to the
connect/create_engine too...
e.g. meta = MetaData( url, echo=True, whatever=...)
and no mentioning of create_engine() - for lazys and newbies.
Right now it accepts any kwarg and then ignores it.
Than would be one less arguable term (engine) in mass use ;-)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---