步骤:
1、创建与数据库的连接对象;
2、创建游标;
3、通过游标执行语句
4、增删改需要提交(commit)数据
5、关闭连接
如:
import MySQLdb # Python通过MySQLdb库来实现操作数据库
1、创建与数据库的连接对象
connect = MySQLdb.connect(
host = 数据库IP地址
port = 3306 # MySQL数据库一般为3306端口
user = 数据库登录用户名
password = 数据库登录密码
db = 要操作的数据库名称
charset = ‘utf8’ # 便于识别数据库中的中文
)
2、创建游标
cur= connect.cursor()
3、执行SQL语句
sql = 'select * from table'
或sql = ‘delete from table where id = 1’
cur.execute(sql)
4、提交数据(增删改操作)
connect.commit()
5、关闭连接
connect.close()