1. 转载一下,方便以后应用

  2. def center(sql):

  3.     try

  4.         center_ip = '192.168.1.100' 

  5.         center_user = 'root' 

  6.         center_passwd = 'xxxxxx' 

  7.         conn = MySQLdb.connect(host = center_ip,user = center_user,passwd = center_passwd,charset='utf8',connect_timeout=20

  8.         cursor = conn.cursor()  

  9.         cursor.execute(sql) 

  10.         alldata = cursor.fetchall() 

  11.         cursor.close() 

  12.         conn.close() 

  13.         return alldata 

  14.     except

  15.         return 0

虽然简单,但还挺实用的

原文地址http://wangwei007.blog.51cto.com/68019/1118809