tomoakin
tomoakin
First, make sure that the PostgreSQL and libpq are working correctly with psql (command line front end of PostgreSQL). Second, ``` R CMD check --as-cran RPostgreSQL_0.7-3.tar.gz ``` and indicate the...
I have got a good looking log on Big Sur 11.6 after brew install postgresql. ``` $ R CMD check RPostgreSQL_0.7-3.tar.gz * using log directory ‘/Users/tomoaki/RPostgreSQL.Rcheck’ * using R version...
The included libpq is configured only for windows and macos. In Linux systems, you should be able to compile PostgreSQL and setup such that pg_config in the path identify the...
Server encoding have nothing to do with this issue. Commit ca5182770aeab3950ef21d93029e3cac1be65e1a sets the encoding to the received text data according to the client encoding at the transfer.
Have you installed a postgresql-devel package with sudo yum install postgresql-devel or sudo yum install postgresql[appropriate version no]-devel ?
The first thing you should do is to find pg_config and put it in your PATH. If there isn't on the system, I do not understand what is your idea...
The lesson of #116 is to ask the IT staff for necessary information. If your include files aren't in /usr/pgsql-11/include, install.packages("RPostgreSQL", configure.args = c(PG_INCDIR = "/usr/pgsql-11/include")) will not help.
As explained in https://forums.developer.apple.com/thread/65619, OpenSSL is depricated as a public API in macOS. So, current source, not including the SSL library code, will not be capable of SSL connection in...
With current license situation, it appears impossible to include the library code due to incompatibility of GPL and OpenSSL license. https://www.gnu.org/licenses/license-list.en.html#OpenSSL OpenSSL is currently working to update the license to...
On windows, the configure is not used at all and configure.win is used, which is blank. Thus, currently on windows platform, presence of libpq installation is not sought at all,...