RMySQL讀取mysql資料庫的嘗試

來源:互聯網
上載者:User

剛剛很艱難的在windows下安裝上RMySQL,詳見

RMySQL在windows下的安裝方法

迫不及待的測試了一下

參考資料:http://www.biosino.org/R/R-doc/R-data_cn/DBI-_002f-RMySQL.html

 

1、串連資料庫

> library(RMySQL) #載入包> con <- dbConnect(dbDriver("MySQL"), dbname = "eswp", user="root", password="root")  #串連資料庫,必須通過user和password輸入使用者名稱和密碼,不然連不上

2、列出表中資料庫

 dbListTables(con) [1] "2008yearnew"                  "agent"                        "artifact"                     [4] "cancer_data"                  "chinese_drug"                 "conceptnum"  

3、讀取table

> dbReadTable(con, "foreign_drug")[3:7,1:2]#資料太多,唯讀取一部分                                                                                                        URL register_no3 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10987   H201201974 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10990   H201201965 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10984   H201201816 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10993   H201201847 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10978   H20120182

4、查詢table

> dbGetQuery(con, paste("select URL,register_no from foreign_drug where register_no ='H20120197' or register_no ='H20120196'"))                                                                                                        URL register_no1 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10987   H201201972 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10990   H20120196

5、刪除表,中斷連線

> dbRemoveTable(con, "foreign_drug")[1] TRUE> dbDisconnect(con)[1] TRUE

 

先回去了,明天接著學習。

生命不息,學習不止。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.