python操作mysql数据库
2018-07-03 01:11:20来源:博客园 阅读 ()
import pymysql class Mysql(object): def __init__(self): try: # 打开数据库连接 #连接数据库所需的值,可以在__init__()中传入 self.conn = pymysql.connect( host = 'localhost', port = 3306, user = "root", passwd = 'root', db = "test", charset = 'utf8' ) except Exception as e: print(e) else: print("connect successfully") # 使用 cursor() 方法创建一个游标对象 cursor self.cur = self.conn.cursor() def create_table(self): try: # 使用 execute() 方法执行 SQL,如果表存在则删除 self.cur.execute("DROP TABLE IF EXISTS EMPLOYEE") # 使用预处理语句创建表 sql = """CREATE TABLE EMPLOYEE ( FIRST_NAME CHAR(20) NOT NULL, LAST_NAME CHAR(20), AGE INT, SEX CHAR(1), INCOME FLOAT )""" #执行sql语句 self.cur.execute(sql) print("create table success") except Exception as e: print("create table error\n" + e) def add(self): #数据库插入语句 sql = """insert into EMPLOYEE(First_Name, Last_Name,Age,Sex,Income) values('Mac','Mohan',20,'F',2000);""" try: self.cur.execute(sql) # 提交到数据库执行 self.conn.commit() except Exception as e: print(e) # 发生错误时回滚 self.conn.rollback() print("fail to add new data") else: print("insert data seccess!") # Python查询Mysql使用 # fetchone()方法获取单条数据, 使用fetchall()方法获取多条数据。 # fetchone(): 该方法获取下一个查询结果集。结果集是一个对象 # fetchall(): 接收全部的返回结果行. # rowcount: 这是一个只读属性,并返回执行execute() # 方法后影响的行数。 def show(self): sql = "select * from employee" try : self.cur.execute(sql) #fetchall()返回的结果是list,list里面再嵌套list res = self.cur.fetchall() for row in res: fname = row[0] lname = row[1] age = row[2] sex = row[3] income = row[4] # 打印结果 print("\n fname =%s,lname =%s,age = %d, sex=%s,income=%d \n " % (fname, lname, age, sex, income)) except Exception as e: print(e + "select data fail") else: print("select data success") #更新数据库 def upodate(self): sql = "update employee set age = age + 1 where sex ='%c'" %("m") try: self.cur.execute(sql) self.conn.commit() except Exception as e: print(e) else: print("update data success") #删除数据库中数据 def rem(self): sql = 'delete from employee where sex = "M"' try: self.cur.execute(sql) self.conn.commit() except Exception as e: print(e) else: print("delete data success") #关闭数据库连接 def close(self): self.cur.close() self.conn.close() print("close database success") if __name__ == "__main__": mysql = Mysql() mysql.create_table() mysql.add() mysql.show() mysql.upodate() mysql.rem() mysql.close()
可能会遇到的异常:
1.(1054, "Unknown column 'FirstName' in 'field list'") 在insert数据的时候遇到的,是因为字段没有创建
2.1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server
version for the right syntax to use near '' at line 1" 可能是格式有问题
3.还有一些请参考http://www.runoob.com/python3/python3-mysql.html
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash