用python编写与mysql数据库连接并实现断线重连的问题
最近在钻研python,遇到个很棘手的问题,问过度娘和访过谷歌,迟迟未能解决,问题是这样的:用python实现在长连接到mysql的时候如果出现断线的情况自动重连(断线情...
最近在钻研python,遇到个很棘手的问题,问过度娘和访过谷歌,迟迟未能解决,问题是这样的:
用python实现在长连接到mysql的时候 如果出现断线的情况 自动重连 (断线情况也可能是在执行某种操作的时候而不仅仅是数据库重启)
我的编程思路是这样的:
import MySQLdb
import time
def conn():
try:
c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
except:
print "Could not connect to MySQL server."
exit( 0 )
try:
cursor=c.cursor()
cursor.execute( "SELECT id,detail FROM note where id>1" )
except Exception,e:
print'no,it is wrong!'
print "Rows selected:", cursor.rowcount
print cursor.fetchall()
for row in cursor.fetchall():
print "note : ", row[0], row[1]
cursor.close()
c.close()
def run():
last = time.time()
while True :
time.sleep(1)
Now = time.time()
if Now - last > 10 :
last = Now
if (conn.ping()==False):
print'The connection is out'
conn()
conn()
run()
运行了就发现conn.ping()函数不存在,我知道要用到这个函数,但是我不会用,这个是在某个库里面的还是要自己写的,如果是自己写的,应该怎么写呢?
请各位大大高手指点下小弟 小弟不胜感激!!!
程序现在如下:
import MySQLdb
import time
def connect():
conn = MySQLdb.connect(user="root",passwd="1",host="localhost",db="yingtest")
return conn
c = connect()
def restart():
global c
last = time.time()
while True :
time.sleep(1)
Now = time.time()
if Now - last > 10 :
last = Now
try:
c.ping()
except:
print('now restart')
c = connect()
run()
def run():
try:
cursor=c.cursor()
cursor.execute( "SELECT id,detail FROM note where id>1" )
except Exception,e:
print'no,it is wrong!'
print "Rows selected:", cursor.rowcount
print cursor.fetchall()
for row in cursor.fetchall():
print "note : ", row[0], row[1]
cursor.close()
connect() run() restart() 展开
用python实现在长连接到mysql的时候 如果出现断线的情况 自动重连 (断线情况也可能是在执行某种操作的时候而不仅仅是数据库重启)
我的编程思路是这样的:
import MySQLdb
import time
def conn():
try:
c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
except:
print "Could not connect to MySQL server."
exit( 0 )
try:
cursor=c.cursor()
cursor.execute( "SELECT id,detail FROM note where id>1" )
except Exception,e:
print'no,it is wrong!'
print "Rows selected:", cursor.rowcount
print cursor.fetchall()
for row in cursor.fetchall():
print "note : ", row[0], row[1]
cursor.close()
c.close()
def run():
last = time.time()
while True :
time.sleep(1)
Now = time.time()
if Now - last > 10 :
last = Now
if (conn.ping()==False):
print'The connection is out'
conn()
conn()
run()
运行了就发现conn.ping()函数不存在,我知道要用到这个函数,但是我不会用,这个是在某个库里面的还是要自己写的,如果是自己写的,应该怎么写呢?
请各位大大高手指点下小弟 小弟不胜感激!!!
程序现在如下:
import MySQLdb
import time
def connect():
conn = MySQLdb.connect(user="root",passwd="1",host="localhost",db="yingtest")
return conn
c = connect()
def restart():
global c
last = time.time()
while True :
time.sleep(1)
Now = time.time()
if Now - last > 10 :
last = Now
try:
c.ping()
except:
print('now restart')
c = connect()
run()
def run():
try:
cursor=c.cursor()
cursor.execute( "SELECT id,detail FROM note where id>1" )
except Exception,e:
print'no,it is wrong!'
print "Rows selected:", cursor.rowcount
print cursor.fetchall()
for row in cursor.fetchall():
print "note : ", row[0], row[1]
cursor.close()
connect() run() restart() 展开
3个回答
展开全部
conn本来 就已经被你定义成了 函数, conn.ping()当然不存在了。而且你要的数据库连接c,还被手动关闭了。我觉得有两点
1. 按照你这个脚本的情况,你用一次,就新建一个数据库连接问题应该不大。
2. 要保持使用一个连接的话。把c作全局变量 c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
使用的时候,直接用c但是不要close,当然要先判断这个连接是否已经断开了,如是再重新连一次。
或者把连接放到一个连接池里面,用的时候直接去连接池里面取。连接池可以看看 DBUtils模块
你说的conn.ping() 看看是不是在c里面,c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")就是这个对象里面,看看有没有判断连接是否断开的方法。 因为没用过 MySQLdb模块。
1. 按照你这个脚本的情况,你用一次,就新建一个数据库连接问题应该不大。
2. 要保持使用一个连接的话。把c作全局变量 c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
使用的时候,直接用c但是不要close,当然要先判断这个连接是否已经断开了,如是再重新连一次。
或者把连接放到一个连接池里面,用的时候直接去连接池里面取。连接池可以看看 DBUtils模块
你说的conn.ping() 看看是不是在c里面,c=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")就是这个对象里面,看看有没有判断连接是否断开的方法。 因为没用过 MySQLdb模块。
更多追问追答
追问
谢谢!你说的意思我有些不太明白..
1.我用了c.close()在conn()最后面表示我只要调用了conn()这个函数就会先建立连接,在断掉连接?所以此处应该删掉?
2.你说的连接池DBUtils模块我昨天下了一个 但是那个主要是用于PyGreSQL数据库的吧,能用在MySql上么?如果可以用应该怎么用呢?
最好有代码举例代码好吗?我多加给你分了..
追答
呵呵,那个 DBUtils 确实说错了。是用在pgsql上面的。
刚刚调试了mysql和模块MySQLdb试了下。ping方法是数据库连接对象c的。当c的连接正常的时候c.ping()返回None,否则会报错。
>>> c.ping()
Traceback (most recent call last):
File "", line 1, in
_mysql_exceptions.InterfaceError: (0, '')
所以你只要根据这一点来判断要不要重新连接。
我说的把c当作一个全局变量是这样的。
import MySQLdb
def connect():
conn = MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
return conn
c = connect()
def xxx():
global c
try:
c.ping()
except:
c = connect()
# 然后再用c去执行下面的操作, 但是要注意,如果是要这样用的话,你下面的操作就不要调用c.close()方法了。
...
我是觉得数据压力不是很大的话,用一次调用一次connect() 然后再关掉连接,应该也没啥关系
展开全部
conn.ping() 中的conn 是什么?
conn=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
conn.ping()
conn=MySQLdb.connect(user="root",passwd="12345",host="localhost",db="yingtest")
conn.ping()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dawsdswd
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询