我正在尝试将我的Sequel Pro数据库连接到R.在Joseph Adler的“R in a Nutshell” - 第164页 - 他列出了不同数据库的各种ODBC驱动程序,但我找不到Sequel Pro的一个。任何有关哪个驱动程序使用的帮助将不胜感激。
答案 0 :(得分:1)
我没有Sequel Pro数据库,但以下是您可能会遵循的步骤:
使用R打开ODBC连接:
library(RODBC)
dsn <- "this is the dsn assigned in the windows tool"
db <- odbcConnect(dsn)
sqlQuery(db, "select * from whatever")
sqlSave(db, df)
df
中的数据。对不起,我无法给你确切的过程,但我没有必要的数据。