Michael Bayer wrote:

> ticket 75 needs to be implemented:
>
> http://www.sqlalchemy.org/trac/ticket/75


Ok, 'till rev.0.3.0 we will not have these clauses.
I think I can work around this issue creating tables with

sql_create_qry = """
CREATE TABLE ...
...  ON DELETE CASCADE
...
"""
sqlalchemy.text(sql_create_qry, engine)

and then declare them with

users = sqlalchemy.Tables(.... , autoload=True)


Reading ticket 75 it seems to me that no "magic layer" exist or will be 
implemented for sqlite, right?
It doen't matter, I will try to customize my code for it, if I will need it.

Thanks
Alessandro




_______________________________________________
Sqlalchemy-users mailing list
Sqlalchemy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlalchemy-users

Reply via email to