This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ghaering
Recipients ghaering, lakshmipathi
Date 2009-12-25.00:03:48
SpamBayes Score 8.734001e-08
Marked as misclassified No
Message-id <1261699430.32.0.674829398606.issue7572@psf.upfronthosting.co.za>
In-reply-to
Content
Please change your test case so that it works with an in-memory database
":memory:". Then you'll also need to include a schema creation command
"create table", which is missing here.

Please also state which behaviour you see and which one you expect. Best
is to provide a test case that asserts the expected behaviour in code.

For example if you expect a certain SELECT statement to return more than
one value, you can use code like this:

{{{
cur.execute("select ...")
rows = cur.fetchall()
assert len(rows) > 1
}}}
History
Date User Action Args
2009-12-25 00:03:50ghaeringsetrecipients: + ghaering, lakshmipathi
2009-12-25 00:03:50ghaeringsetmessageid: <1261699430.32.0.674829398606.issue7572@psf.upfronthosting.co.za>
2009-12-25 00:03:49ghaeringlinkissue7572 messages
2009-12-25 00:03:48ghaeringcreate