RMySQL 에서 mysql 데이터 베 이 스 를 읽 으 려 는 시도

6637 단어 mysql
방금 힘 들 게 윈도 우즈 에 RMySQL 을 설 치 했 습 니 다. 자세 한 내용 은...
RMySQL 의 윈도 우즈 설치 방법
잠시 도 지체 하지 않 고 테스트 를 해 봤 습 니 다.
참고 자료: 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_no

3 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10987   H20120197

4 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10990   H20120196

5 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10984   H20120181

6 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10993   H20120184

7 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10978   H20120182


4. 조회 테이블
> dbGetQuery(con, paste("select URL,register_no from foreign_drug where register_no ='H20120197' or register_no ='H20120196'"))

                                                                                                        URL register_no

1 http://app1.sfda.gov.cn/datasearch/face3/content.jsp?tableId=36&tableName=TABLE36&tableView=????&Id=10987   H20120197

2 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

 
먼저 돌아 가 고 내일 이어서 공부 하 세 요.
생명 이 멈 추 지 않 아 공부 가 그 치지 않 는 다.

좋은 웹페이지 즐겨찾기