mysql与pyhton交互六:python操作sql查询操作(优化成一个类)

#引入模块
from pymysql import *

class JD(object):
    def __init__(self):
        # 创建connection连接
        self.conn = connect(host='localhost',port=3306,user='root',password='980928',database='jing_dong',charset='utf8')
        # 获得cursor对象
        self.cursor = self.conn.cursor()

    def __del__(self):
        # 关闭cursor对象
        self.cursor.close()
        self.conn.close()


    def execute_sql(self,sql):
        self.cursor.execute(sql)
        for temp in self.cursor.fetchall():
            print(temp)


    def show_all_items(self):
        """显示所有的商品"""
        sql = "select * from goods;"
        self.execute_sql(sql)

    def show_cates(self):
        """显示所有的商品分类"""
        sql = "select * from goods_cates;"
        self.execute_sql(sql)

    def show_brands(self):
        """显示所有的商品品牌分类"""
        sql = "select * from goods_brands;"
        self.execute_sql(sql)

    def print_menu(self):
        print("-----京东------")
        print("1.所有商品")
        print("2.所有的商品分类")
        print("3.所有的商品品牌分类")
        return input("请输入功能对应的序号:")

    def run(self):
        num = self.print_menu()
        if num == "1":
            # 查询所有商品
            self.show_all_items()
        elif num == "2":
            # 查询分类
            self.show_cates()
        elif num == "3":
            # 查询品牌分类
            self.show_brands()
        else:
            print("输入有误,请重新输入:")





def main():
    # 1.创建一个京东商城对象
    jd = JD()

    # 2.调用这个对象的run方法,让其运行
    jd.run()










if __name__ == '__main__':
    main()

你可能感兴趣的:(数据库知识)