I have three different DBs, one is person.db, another is journal.db, yet 
another is tag.db. In the documentation it reads:

Vertical partitioning places different kinds of objects, or different 
>> tables, across multiple databases:
>
>
>> engine1 = create_engine('postgresql://db1')
>
> engine2 = create_engine('postgresql://db2')
>
>
>> Session = sessionmaker(twophase=True)
>
>
>> # bind User operations to engine 1, Account operations to engine 2
>
> Session.configure(binds={User:engine1, Account:engine2})
>
>
>> session = Session()
>
>
I noticed that this example only deals with two DBs, and the parameter is 
called "twophase". I was wondering if there is any significance of "two" 
here? How can I fit my third DB in? Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to