Werner,
I am using kinterbasdb downloaded just few days ago. Also I am using
sqla 0.6.5 .
I worked with firebird rdbms engine several years ago but not from
python. This is the first time I am using firebird from python and
from sqlalchemy ( been using python since 2004 ).
I have an app in which every table is created with declarative_base
and in every engine I've tried, it was enough to write...
id = Column( Integer, primary_key = True )
This caused every engine to use whatever is needed to have an
"autoincrement" field.
In the case of firebird+kinterbasdb it was necessary to add the
Sequence in the argument of Column as ...
id = Column( Integer, Sequence("whatever", optional = True ),
primary_key = True )
On Nov 9, 2:03 am, werner <[email protected]> wrote:
> On 09/11/2010 01:34, Michael Bayer wrote:> not sure if anyone knows. I have
> 2.1 running here for my own tests.
>
> > On Nov 8, 2010, at 5:05 PM, Domingo Aguilera wrote:
>
> >> Is firebird 2.5 working with sqla. ?
>
> I am in the midst of moving to FB 2.5 and SA 0.6.5 and have not
> encountered any problems yet.
>
> You are on kinterbasdb 3.3.0? If not you can get it from
> here:http://www.firebirdsql.org/index.php?op=devel⊂=python
>
> Werner
--
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.