Python中对MySQL操作实践
在64位windows下,MySQL的安装真是个大麻烦,安装卸载了不下10次,最终搞定了。 1-确认MySQL已经安装正确并保持运行。 2-Python中安装Python-MySQL模块。 3-python环境下: <!-- lang: python --> import MySQLdb #引入MySQLdb模块 conn = MySQLdb.connect(host='127.0.0.1', port=3306, user='root',passwd='000000') #建立与数据库系统的连接 cursor = conn.cursor() #获取操作游标 cursor.execute("""create database python """) #执行SQL,创建一个名为python的数据库 cursor.close() #关闭链接,释放资源 来源: oschina 链接: https://my.oschina.net/u/1241968/blog/150471