Python Mysql

import MySQLdb

# 打开数据库连接
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )

# 使用cursor()方法获取操作游标 
cursor = db.cursor() #cursor用来执行命令的方法:
posted @ 2014-05-09 18:23  程序员大叔的博客  阅读(179)  评论(0编辑  收藏  举报