python【系列教程】之數據庫編程

1、python數據庫API簡介       2、操做SQLite數據庫 import sqlite3 # 獲取數據庫鏈接 conn = sqlite3.connect('first.db') # 獲取遊標 c = conn.cursor() # 執行查詢語句 c.execute('select * from user_tb where _id>?', (2,)) print('查詢返回的記錄
相關文章
相關標籤/搜索