远程访问指定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()