您好,登錄后才能下訂單哦!
這篇文章主要介紹了python中操作mysql的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
mysql 使用
啟動服務
sudo systemctl start mysql
pip3 install pymysql
python 操作數據庫:
import pymysql class 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的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。