1.簡單例子
#-*-coding:utf-8-*-import mysqldb
db=mysqldb.connect(host='localhost',user='root',passwd='root') #成功則返回乙個連線物件
cur=db.cursor() #建立乙個游標來執行sql語句
cur.execute('select version()') #執行sql語句
row=cur.fetchone() #得到乙個結果元組
print 'server version:' ,row[0]
cur.close()
db.close()
2.例子二
#-*-coding:utf-8-*-import mysqldb
import sys
db=mysqldb.connect(host='localhost',user='root',passwd='root',db='chen') #成功則返回乙個連線物件
cursor=db.cursor()
cursor.execute('drop table if exists animal')
cursor.execute('create table animal(name char(40),category char(40))')
cursor.execute("insert into animal(name,category) values ('snake','reptile'),('frog','amphibian')")
cursor.execute ("select name, category from animal")
while (1):
row = cursor.fetchone()
if row == none:
break
print "%s, %s" % (row[0], row[1])
print "number of rows returned: %d" % cursor.rowcount
db.commit()
db.close()
python 資料庫操作
例子1 建立乙個資料庫 coding utf 8 中文注釋 import mysqldb 建立和資料庫系統的連線 conn mysqldb.connect host localhost user root passwd 獲取操作游標 cursor conn.cursor 執行sql,建立乙個資料庫 ...
Python資料庫操作
我們之前接觸過的儲存資料的方式都是 1.字串 2.列表 3.元組 4.字典 以上方式其實是屬於同一種方式,即將資料儲存在記憶體中 實際在開發過程中,資料儲存主要有三種形式 1.將資料儲存到記憶體中 優點 使用方便,讀寫速度快 缺點 程式關閉的時候,記憶體會釋放,資料會消失 2.將資料寫入到檔案中 優...
Python資料庫操作
定義 資料庫是儲存資料的倉庫,按照一定的資料模型進行組織 描述和儲存。可以以最大的程度減少冗餘度。資料庫管理系統的分類 常用的資料庫模型 支援的型別 null integer real text blob py對應的型別 none int float str bytes sqlite3模組 該模組定...