On Mon, Sep 26, 2011 at 11:05 PM, Michael Bayer
<mike...@zzzcomputing.com> wrote:
> On Sep 26, 2011, at 2:50 AM, Nathan Robertson wrote:
>
>>       Column('custid', Integer, Sequence('test.customer_custid_seq'),
>> primary_key=True),
>
> for the Sequence, as with all schema items, you need to specify the "schema" 
> portion separately so that SQLAlchemy knows where each token starts and ends:
>
> Sequence("customer_custid_seq", schema="test")

Yep, that's it. Solved the problem. Thanks a lot for your help.

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

Reply via email to