SQLite是一款非常流行的關聯式資料庫,由於它非常輕盈,因此被大量應用程式廣泛使用。 sqlite3是python標準發行版中自帶的模組,可以用來處理sqlite資料庫。資料庫既可以保存到檔案中,也可以保存在記憶體中,這裡保存到記憶體中。
程式碼:(推薦學習:Python影片教學)
import sqlite3 with sqlite3.connect(":memory:") as con: c=con.cursor() #创建游标 c.execute('''CREATE TABLE sensors(data text,city text,code text,sensor_id real,temperature real)''') #新建表,text和real分别表示字符串和数值的类型 for table in c.execute("SELECT name FROM sqlite_master WHERE type='table'"): print "Table",table[0] c.execute("INSERT INTO sensors VALUES ('2016-11-05','Utrecht','Red',42,15.14)") c.execute("SELECT * FROM sensors") print c.fetchone() #输出插入记录 con.execute("DROP TABLE sensors") #删除表 print "# of tables",c.execute("SELECT COUNT(*) FROM sqlite_master WHERE type='table'").fetchone()[0] c.close()
運行結果:
Table sensors (u'2016-11-05', u'Utrecht', u'Red', 42.0, 15.14) # of tables 0
關係型資料庫管理系統
#嵌入式資料庫,適用於內嵌裝置
SQLite不是C/S的資料庫引擎
整合在使用者程式中
實作了大多數SQL標準
#更多Python相關技術文章,請造訪Python教學欄位進行學習!
以上是python資料分析用什麼資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!