標籤:
RSQLite 可以在R中方便的建立sqlite資料庫,並進行檢索, 這個R包依賴於DBI包
github 上的地址:https://github.com/rstats-db/RSQLite
github上的簡介詳細的介紹了如何用RSQLite 建立一個資料庫並檢索資料
基本用法:
library(RSQLite) con <- dbConnect(SQLite(), "test.db") # 建立資料庫連接, test.db 為要建立的資料庫的名字
# 將R中的資料庫物件mtcars 當做一張表寫入test.db 資料庫中,表名為mtcarsdbWriteTable(con, "mtcars", mtcars)dbDisconnect(con) # 中斷連線
當建立完畢後, 會在目前的目錄在產生一個test.db 的檔案,這個檔案就是我們建立好的 sqlite資料庫;
通過命令列來查看裡面的內容,
sqlite3 test.dbSQLite version 3.8.11.1 2015-07-29 20:00:57Enter ".help" for usage hints.sqlite> select * from mtcars Mazda RX4|21.0|6.0|160.0|110.0|3.9|2.62|16.46|0.0|1.0|4.0|4.0Mazda RX4 Wag|21.0|6.0|160.0|110.0|3.9|2.875|17.02|0.0|1.0|4.0|4.0Datsun 710|22.8|4.0|108.0|93.0|3.85|2.32|18.61|1.0|1.0|4.0|1.0Hornet 4 Drive|21.4|6.0|258.0|110.0|3.08|3.215|19.44|1.0|0.0|3.0|1.0Hornet Sportabout|18.7|8.0|360.0|175.0|3.15|3.44|17.02|0.0|0.0|3.0|2.0Valiant|18.1|6.0|225.0|105.0|2.76|3.46|20.22|1.0|0.0|3.0|1.0Duster 360|14.3|8.0|360.0|245.0|3.21|3.57|15.84|0.0|0.0|3.0|4.0
可以看到表中的資料已經成功插入;
R中串連資料庫的包, 都依賴於DBI包, 除了RSQLite, 還有RMySQL, RPostgreSQL等串連其他資料庫的包。
RSQLite 操作sqlite資料庫