1. 程式人生 > >python的MySQLdb庫基本使用介紹

python的MySQLdb庫基本使用介紹

main mysqld fetchone 一行 內容 def python sql的基本操作 spa

MySQLdb庫

import MySQLdb

簡介

提供mysql的基本操作(包括建表,讀取表數據,插入數據到表)

數據庫操作基本步驟

技術分享圖片
#!/usr/bin/python
# -*- coding: UTF-8 -*-

import MySQLdb

if __name__ == "__main__":
    # 打開數據庫連接
    db = MySQLdb.connect("localhost", "root", "root", "iquota", charset=utf8)

    # 使用cursor()方法獲取操作遊標
    cursor = db.cursor()

    
# 查看表 sql_cmd="select * from app;" cursor.execute(sql_cmd) data = cursor.fetchone() data_all = cursor.fetchall() # 關閉數據庫連接 db.close() # 讀取一行 print data # 讀取全部內容 print data_all
mysql基本讀取舉例

輸出結果

技術分享圖片
(10L, u5c26736821d24de48942d982b1c69000, uqa-stress, uqa app for stress test
, uzhangsan) ((11L, u5c26736821d24de48942d982b1c69000, uqa-stress, uqa app for stress test, ulisi), (12L, u37ea7ce186404c2ea3a1fb4079d58c15, uqa-stress-test, uqa app for stress test, uzhangsan), (13L, u37ea7ce186404c2ea3a1fb4079d58c15, uqa-stress-test, uqa app for stress test, ulisi
), (14L, u283182bf5ffe4398932d72e9a6d239cc, uapp1, uadd_request, ulisi), (21L, u394c56cde2cb4434a01cff43defcc0a6, uliurong07Test, uadd_request, ulisi))
View Code

python的MySQLdb庫基本使用介紹