On 10/30/07, McA <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> thank you for your comments.
> I really expected to get comments from more people.
> But probably I'm concerned about something you don't have to. ;-)
>
> So, I'll wait.
>
it seems better to use:
import sqlalchemy

and in code do:
sqlalchemy.select(...)

if you start using import * from sqlalchemy then your code will get
confusing really quick. For example you won't know which select() you
talk about if you use pure sqlaclhemy or assign_mapper. So it is
preferred that you use
import sqlalchemy
or
import sqlalchemy as sa
at all times.

Lucas
-- 
-- 
Vim auto completion for python
http://lucasmanual.com/mywiki/FrontPage#head-8ce19b13e89893059e126b719bebe4ee32fe103c
TurboGears from start to finish:
http://www.lucasmanual.com/mywiki/TurboGears

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