from sqlalchemy import *
from sqlalchemy.orm import *
-from sqlalchemy.test import *
+from sqlalchemy.test import profiling
NUM = 500
DIVISOR = 50
-meta = MetaData(testing.db)
+engine = create_engine('sqlite://')
+meta = MetaData(engine)
items = Table('items', meta,
Column('item_id', Integer, primary_key=True),
Column('value', String(100)))
when additional mappers are created while the existing
collection is being compiled."""
-import testenv; testenv.simple_setup()
from sqlalchemy import *
from sqlalchemy.orm import *
import thread, time