Comment 4 for bug 709527

Revision history for this message
Gustavo Niemeyer (niemeyer) wrote :

What is the error message you are getting?

It works for me:

>>> from storm.locals import *
>>> db = create_database("sqlite:memory")
>>> s = Store(db)
>>> s.execute("SELECT ?", ('foo',)).get_all()
[('foo',)]