Closed statquant closed 4 years ago
Hi @statquant,
This type conversion was added in https://github.com/KxSystems/rkdb/pull/52. If you update your rkdb installation to the version on the current master branch this conversion should be handled. As seen below
R
> devtools::install_github('kxsystems/rkdb', quiet=TRUE,INSTALL_opts=c("--no-multiarch"))
> library(rkdb)
> con <- open_connection(port = 12345)
> DF = data.frame(x=1:2, y=1L:2L, z = c("11", "11"), d = Sys.Date() + 1:2)
> execute(con, "{[x] `data set x}", DF)
[1] "data"
q
q)data
x y z d
-----------------
1 1 11 2019.12.12
2 2 11 2019.12.13
I'm closing this issue for now, please feel free to reopen if there are any issues with the above
sorry about this it is working fine
Hello, it looks like basic type conversion are not supported from R -> q