久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

python如何操作mysql

瀏覽:106日期:2022-07-13 17:00:21

mysql 使用

啟動服務

sudo systemctl start mysqlpip3 install pymysql

python 操作數據庫:

定義類

import pymysqlclass MyDb(): def __init__(self, host, user, passwd, db): self.__db = pymysql.connect(host, user, passwd, db) self.__cursor = self.__db.cursor() # 增刪改-數據庫 def set(self, sql): try: self.__cursor.execute(sql) self.__db.commit() except Exception as e: self.__db.rollback() print(’Execute Error: n {e}’) # 查-數據庫 def get(self, sql, fetchone=True): self.__cursor.execute(sql) try: if fetchone == True:data = self.__cursor.fetchone() else:data = self.__cursor.fetchall() except Exception as e: print(’Execute Error: n {e}’) data = None finally: return data # 關閉數據庫 def close(self): self.__db.close() 調用

def example(): ## 實例化數據庫 ### 類參數:host、user、passwd、db db = MyDb(’localhost’, ’root’, ’zuoy123’, ’test’) ## 查看版本 get_version_sql = ’SELECT VERSION()’ version = db.get(get_version_sql) print(f’Database Version: {version}’) ## 刪除表 delete_table_sql = ’DROP TABLE IF EXISTS employee’ db.set(delete_table_sql) ## 新建表 new_table_sql = ’CREATE TABLE IF NOT EXISTS employee( id INT NOT NULL PRIMARY KEY, name CHAR(21) NOT NULL, age DOUBLE DEFAULT 18)’ db.set(new_table_sql) ## 查找表 get_table_sql = ’SHOW TABLES’ data = db.get(get_table_sql) if data: print(data) ## 關閉數據庫 db.close()if __name__ == ’__main__’: example()

常用sql

DROP TABLE IF EXISTS employee;CREATE TABLE IF NOT EXISTS employee(id INT);

以上就是python操作 mysql的步驟的詳細內容,更多關于python操作 mysql的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 山西省| 秭归县| 花莲市| 泰顺县| 巴彦县| 利川市| 钦州市| 兴义市| 于都县| 安乡县| 加查县| 苏尼特左旗| 武乡县| 城固县| 东台市| 澄迈县| 祥云县| 应城市| 盈江县| 新昌县| 商都县| 永吉县| 比如县| 林州市| 安西县| 永顺县| 罗定市| 南漳县| 阿勒泰市| 临漳县| 永新县| 饶阳县| 阳东县| 虎林市| 涪陵区| 徐汇区| 遵化市| 西丰县| 桃园县| 抚州市| 左权县|