使用SQLObject的简单多线程不起作用

时间:2011-03-19 12:05:06

标签: python sqlobject

一旦我执行.getOne()

,它就会停滞不前
from sqlobject import *
import threading

sqlhub.processConnection = connectionForURI('mysql://user:password@localhost:3306/database')

class Player(SQLObject):
    name = StringCol(length=64)
    last_login = DateTimeCol()
    create_date = DateTimeCol(default=DateTimeCol.now)

def act():
    result = Player.selectBy(name='Zippo')
    player = result.getOne()
    print 'You will never see this message in console.'

threading.Thread(target=act).start()

2 个答案:

答案 0 :(得分:1)

可能会失败,你只是没有看到异常?在这种情况下,您可以将默认结果指定为参数,或者可以将其放在try / except子句中。

如果在调试器中运行它会发生什么?

这里没有太多信息,因为我们不知道您的数据库中有什么。

答案 1 :(得分:0)

不幸的是,问题与SQLObject或Python无关。它可能是我的电脑或我的MySQL服务器。很抱歉误解了所有人。