How to connect R with PostgreSQL on OSX 10.10.2?

十年热恋 提交于 2019-12-11 09:45:06

问题


I have the following setup:

  • OSX 10.10.2
  • PostgreSQL 9.4.1
  • R 3.1.3

This answer as of 2011 says that the easiest approach is to use RpgSQL package. But it is removed from the CRAN repository. RODBC mentioned there is available as source, but it fails to configure:

configure: error: "ODBC headers sql.h and sqlext.h not found"
ERROR: configuration failed for package ‘RODBC’

I've also found another package, which could help me - RPostgreSQL, but it fails to compile:

In file included from RS-PQescape.c:7:
./RS-PostgreSQL.h:23:14: fatal error: 'libpq-fe.h' file not found
#    include "libpq-fe.h"
             ^
1 error generated.
make: *** [RS-PQescape.o] Error 1
ERROR: compilation failed for package ‘RPostgreSQL’

Is there any other way to connect R and PostgreSQL?


回答1:


See RODBC to connect to SQL Server on Mavericks

RODBC isn't really supported on OSX. What I ended up doing is to use RJDBC, which is in CRAN.
Setting up the connection to your data base isn't always easy. But it can be done: Postgres DB can't connect to R with RJDBC



来源:https://stackoverflow.com/questions/29317192/how-to-connect-r-with-postgresql-on-osx-10-10-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!