V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
yfl168648
V2EX  ›  编程

Python 扫数据库的程序,遇到问题,求教!

  •  
  •   yfl168648 · 2016-05-23 15:59:23 +08:00 · 2821 次点击
    这是一个创建于 2887 天前的主题,其中的信息可能已经有所发展或是发生改变。

    一个定时调度的程序,现在遇到的问题是, next_exec_date 我在 navicat 中更新成老时间,程序并不能扫描到。 重启后就能扫描到。新手 python ,还不是很溜,求大家帮忙看看 main 方法里起了一个线程, run 方法如下 主要代码:

    	def run(self):
    		try:
    			conn = mysql.connector.connect(**config.dbconfig)
    		except mysql.connector.Error as e:
    			logging.error( str(e))
    			self.stop()
    		
    		sql = 'select * '
    		sql += ' from task where next_exec_date < now() and state=1 limit 0,10'
    		cursor = conn.cursor()	
    		
    		while not self.thread_stop:	
    			cursor.execute(sql)
    			result = cursor.fetchall()
    			logging.debug("扫描到%s 个任务...",len(result))
                
    			time.sleep(self.interval)
    		#end while
    		cursor.close()
    		conn.close()
    
    2 条回复    2016-05-23 17:38:09 +08:00
    lbp0200
        1
    lbp0200  
       2016-05-23 16:54:42 +08:00 via Android
    黑产
    yfl168648
        2
    yfl168648  
    OP
       2016-05-23 17:38:09 +08:00
    搞定了。。事务隔离级别的问题。
    set global tx_isolation='read-committed'
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5262 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 131ms · UTC 05:54 · PVG 13:54 · LAX 22:54 · JFK 01:54
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.