Maison  >  Article  >  base de données  >  Comment insérer des objets Python dans MySQL ?

Comment insérer des objets Python dans MySQL ?

WBOY
WBOYavant
2023-08-24 14:05:051023parcourir

Comment insérer des objets Python dans MySQL ?

假设在服务器上存在一个名为'test'的MySQL数据库,并且还创建了一个名为employee的表。让这个表有五个字段:fname,lname,age,gender和salary。

假设我们想要将一个包含以下记录数据的元组对象插入到Msql数据库中。

t1=('Steven', 'Assange', 21, 'M', 2001)

To establish an interface between MySQL and Python 3, you need to install the PyMySQL module. Then you can set up the connection using the following statements

import PyMySQL
# Open database connection
db = PyMySQL.connect("localhost","root","","test" )
# prepare a cursor object using cursor() method
cursor = db.cursor()

Next step is to set up the insert query using data in the tuple

sql="insert into employee values(%s,%s,%d,%s,%d)" %t1

现在,使用游标对象的execute()方法执行此查询

cursor.execute(sql)

如果您检查员工表的内容,将会显示添加了一条新记录。

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer