xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 1.79KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-01-30
  • 語(yǔ)言: Python
  • 標(biāo)簽: mysqlhelper??MySql??help??sql??py??

資源簡(jiǎn)介

python 的mysql 數(shù)據(jù)庫(kù)封裝。直接IMPORT使用即可。

實(shí)現(xiàn)了insert\update\delete\getone\getall,自動(dòng)連接和關(guān)閉數(shù)據(jù)庫(kù)

資源截圖

代碼片段和文件信息

import?pymysql


class?MysqlHelper(object):
????conn?=?None

????def?__init__(self?host?username?password?db?charset=‘utf8‘?port=3306):
????????self.host?=?host
????????self.username?=?username
????????self.password?=?password
????????self.db?=?db
????????self.charset?=?charset
????????self.port?=?port

????def?connect(self):
????????self.conn?=?pymysql.connect(host=self.host?port=self.port?user=self.username?password=self.password
????????????????????????????????????db=self.db
????????????????????????????????????charset=self.charset)
????????self.cursor?=?self.conn.cursor()

????def?close(self):
????????self.cursor.close()
????????self.conn.close()

????def?get_one(self?sql?params=()):
????????result?=?None
????????try:
????????????self.connect()
?

評(píng)論

共有 條評(píng)論