问题
With Peewee I'm trying to use limit as follows:
one_ticket = Ticket.select().limit(1)
print one_ticket.count()
This prints out 5 however. Does anybody know what's wrong here?
回答1:
Try running peewee
in debug mode, which is actually just setting up the python logging
module to handle logging.DEBUG
level items:
import logging
logging.basicConfig(
format='[%(asctime)-15s] [%(name)s] %(levelname)s]: %(message)s',
level=logging.DEBUG
)
# From here, you can now perform your query, and you should see peewee's debug output using the logging module.
one_ticket = Ticket.select().limit(1)
print one_ticket.count()
Ideally, you should see the raw query.
来源:https://stackoverflow.com/questions/20067273/how-to-use-peewee-limit