Hi,
I have problem here with SA-0.4b6:

I created an own table that inherits from sqlalchemy.Table like this:

class MyTable(sqlalchemy.Table):
   pass

When I now create tables using this class (e.g. mytable = MyTable(...)), the 
tables are not created via metadata.create_all().

The log files denotes it, it has the following lines:

INFO sqlalchemy.engine.base.Engine 0x..10 PRAGMA table_info("mytable")
INFO sqlalchemy.engine.base.Engine.0x..10 ()

But the following, important lines, are missing (they are there when mytable's 
class is sqlalchemy.Table):

INFO sqlalchemy.engine.base.Engine.0x..10
CREATE TABLE mytable (
   myid .
   ....
)

INFO sqlalchemy.engine.base.Engine.0x..10 None
INFO sqlalchemy.engine.base.Engine.0x..10 COMMIT

With SA-3.10 I don't have this problem.

So, I assume, this is a bug?

Best Regards,
Hermann

-- 
[EMAIL PROTECTED]
GPG key ID: 299893C7 (on keyservers)
FP: 0124 2584 8809 EF2A DBF9  4902 64B4 D16B 2998 93C7

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