博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
以面象对象的思想来操作SQL
阅读量:5301 次
发布时间:2019-06-14

本文共 1614 字,大约阅读时间需要 5 分钟。

# pcj from MySQLdb import * class JD(object):     def __init__(self):         '''连接数据库'''         self.conn=connect(host='localhost',port=3306,user='root',password='123456',database='jd',charset='utf8')         #获取游标         self.cur=self.conn.cursor()     def __del__(self):         self.cur.close()         self.conn.close()     def excute_sql(self,sql):         self.cur.execute(sql)         for i in self.cur.fetchall():             print(i)     def show_goods(self):         sql='select * from goods;'         self.excute_sql(sql)     def show_cates(self):         sql='select * from goods_cates;'         self.excute_sql(sql)     def add_cates(self):         name=input('请输入新类别:')         sql='''insert into goods_cates (name) values ('%s')'''% name         self.cur.execute(sql)         self.conn.commit()     def get_goods_name(self):         find_name=input('请输入高品名称')         sql='select * from goods where name=%s'         self.cur.execute(sql,[find_name])         print(self.cur.fetchall())     def run(self):         while True:             print('----商品查询-----')             print('1、查询所有商品')             print('2、查询所有分类')             print('3、添加一个分类')             print('4、查询一个商品')             op = input('请输入功能号')             if op=="1":                 self.show_goods()             elif op=='2':                 self.show_cates()             elif op=='3':                 self.add_cates()             elif op=='4':                 self.get_goods_name() def main():     #连接数据库     jd=JD()     #运行     jd.run() if __name__ == '__main__':     main()

转载于:https://www.cnblogs.com/pcjbk/p/11195923.html

你可能感兴趣的文章
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
论三星输入法的好坏
查看>>
Linux 终端连接工具 XShell v6.0.01 企业便携版
查看>>
JS写一个简单日历
查看>>
LCA的两种求法
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>
全面分析Java的垃圾回收机制2
查看>>
[Code Festival 2017 qual A] C: Palindromic Matrix
查看>>
修改博客园css样式
查看>>
Python3 高阶函数
查看>>
初始面向对象
查看>>
docker一键安装
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
Exercise 34: Accessing Elements Of Lists
查看>>
angular中的代码执行顺序和$scope.$digest();
查看>>