博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 笔记 之 python 使用数据库-封装
阅读量:5964 次
发布时间:2019-06-19

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

hot3.png

'''python 使用数据库-封装'''import pymysqlclass TestMysql(object):    def __init__(self):        self.a = None        ##定义一个字典        dbConfig = {            "host": "192.168.48.136",            "port": 3306,            "user": "chen",            "passwd": "123456",            "db": "test"        }    def get_connect(self):        if self.a == None:            # 函数传参 传入字典需要加**            conn = pymysql.connect(**self.dbConfig)            self.a = conn    # 使用时不再建立新的链接,只需要使用已有的    def select(self):        self.get_connect()        print("select")    def update(self):        self.get_connect()        print("update")def main():    testMysql = TestMysql()    testMysql.select()if __name__ == '__main__':    main()

转载于:https://my.oschina.net/u/3824134/blog/1807467

你可能感兴趣的文章
Make the Most (Hackerrank Codeagon)
查看>>
Mysql Condition /Handler(异常处理)
查看>>
设计模式-简单工厂模式
查看>>
用户需求和分析
查看>>
JS 基本操作
查看>>
MongoDB整理笔记のReplica Sets
查看>>
再诡异的现象背后可能只是一个傻X的低级错误——谈调试心态
查看>>
快速开发 HTML5 WebGL 的 3D 斜面拖拽生成模型
查看>>
html 学习
查看>>
tomcat如何利用waf进行防护
查看>>
2017最新教程--如何下载美拍视频
查看>>
Fixing an incomplete VM that’s stuck in the Creating state
查看>>
Hadoop 学习总结之三:Map-Reduce入门(转载)
查看>>
node 搭建开发框架express
查看>>
loadrunner-2-8HTML和URL模式
查看>>
RabbitMQ封装实战
查看>>
SQL Server VALUES 使用一记住
查看>>
原码、反码、补码、移码
查看>>
js禁止网页使用右键
查看>>
【百度地图API】——如何让标注自动呈现在最佳视野内
查看>>