Displaying 2 results from an estimated 2 matches for "expid".
Did you mean:
evpid
2003 Feb 06
1
rdbi segmentation fault (fwd)
...p://finzi.psych.upenn.edu/R/Rhelp02/archive/2482.html
(i copied the message below)
has anybody found a solution?
here is the code that gives me a segmentation fault
library(Rdbi)
library(Rdbi.PgSQL)
conn <- dbConnect(PgSQL(), dbname = "PGA")
tmp <- "create table test ( expid int, name varchar(128));"
result <- dbSendQuery(conn,tmp)
dbClearResult(result)
the last line can be substituted by
dbDisconnect(conn)
and you get a segmentation fault too.
The database PGA does exist and the dbSendQuery does create a table (i
checked via psql)
i followed the instr...
2003 Feb 06
0
rdbi segmentation fault
...p://finzi.psych.upenn.edu/R/Rhelp02/archive/2482.html
(i copied the message below)
has anybody found a solution?
here is the code that gives me a segmentation fault
library(Rdbi)
library(Rdbi.PgSQL)
conn <- dbConnect(PgSQL(), dbname = "PGA")
tmp <- "create table test ( expid int, name varchar(128));"
result <- dbSendQuery(conn,tmp)
dbClearResult(result)
the last line can be substituted by
dbDisconnect(conn)
and you get a segmentation fault too.
The database PGA does exist and the dbSendQuery does create a table (i
checked via psql)
i followed the instr...