欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 连接Mysql数据库并创建数据表、插入数据

程序员文章站 2022-05-11 08:18:07
...

Python 连接本地数据库并创建数据表、插入数据,亦可访问远程数据库

远程访问指定IP上的数据库建立连接代码为:db = pymysql.connect(“10.180.8.33”,“root”,“root123”, “testdb”)

#-*-coding: UTF-8 -*-

import pymysql

db = pymysql.connect("localhost", "root", "123", "test")
# 远程访问指定IP上的数据库
# db = pymysql.connect("10.180.8.33","root123","root123", "firedetect")

# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()

sql_createTb = """CREATE TABLE testdb (
                 id INT NOT NULL AUTO_INCREMENT,                 
                 date_time  datetime NOT NULL DEFAULT CURRENT_TIMESTAMP(),
                 path_dst CHAR(80),
                 ret INT,
                 PRIMARY KEY(id))
                 """

cursor.execute(sql_createTb) # 只用创建一次,再次执行会出错
ret = cursor.execute("insert into testdb(date_time, path_dst, ret) values(%s,%s,%s)",('2019-07-15','./home/yasin/test.jpg',1))

# 使用 execute() 方法执行 SQL 查询
cursor.execute("select count(*) from testdb;")
record = cursor.fetchone()
# 执行结果打印
print ("select * from testdb is: ", record[0])

db.commit()
#关闭指针对象
cursor.close()
#关闭连接对象
db.close()


执行后登录Mysql创建表testdb结果为:
Python 连接Mysql数据库并创建数据表、插入数据
查询结果为:
Python 连接Mysql数据库并创建数据表、插入数据