R에서 한국어 설정을 한 뒤 SQL 서버에 접속해서 쿼리 보내고 data frame으로 저장하기
library(DBI)
library(RMySQL)
#Set Locale to Korean
Sys.setlocale("LC_ALL", "korean")
Sys.setlocale(category = "LC_CTYPE", locale = "ko_KR.UTF-8")
#MySQL Connection set
conn = dbConnect(MySQL(),user='아이디',password='비밀번호',dbname='데이터베이스', host='호스트 주소')
#Setting read data to Korean UTF-8
dbGetQuery(conn,"set names utf8")
#connect tables
dbListTables(conn)
dbListFields(conn,"api_diary")
#query test
dbGetQuery(conn, "SELECT * FROM api_present")
#get query
dfTable <- dbGetQuery(conn, "SELECT * FROM api_present")
#Close Connection
dbDisconnect(conn)
'코드와 오류 기록' 카테고리의 다른 글
R Java 초기 세팅 (0) | 2020.04.02 |
---|---|
swift에서 줄바꿈(\n) 안될 때 (0) | 2020.03.13 |
Git Remote Branch 관련 명령어 (1) | 2020.01.31 |
Apple distribution certification private key (0) | 2020.01.28 |
Required Info.plist Value Not Found A CFBundleIdentifier value in your Info.plist is required. (0) | 2020.01.17 |