博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python连接mysql
阅读量:5831 次
发布时间:2019-06-18

本文共 570 字,大约阅读时间需要 1 分钟。

  hot3.png

##example

#coding=UTF-8import sysimport MySQLdbimport timereload(sys)sys.setdefaultencoding('utf-8')def connectDemo():    return MySQLdb.Connection("127.0.0.1","root","root","demo",3306,charset="utf8")if __name__ == '__main__':    begin=time.time()    conn=connectDemo()    cursor = conn.cursor()    sql="""        show tables        """    count = cursor.execute(sql)    rows = cursor.fetchall()    cursor.close()    conn.close()    print "========demo库共:%s 张表============" % (count)    print '耗时:%s 秒' % (time.time()-begin)

转载于:https://my.oschina.net/go4it/blog/754120

你可能感兴趣的文章