RSQLite 操作sqlite資料庫

來源:互聯網
上載者:User

標籤:

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資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.