nbenn opened a new issue, #1400: URL: https://github.com/apache/arrow-adbc/issues/1400
Using SQLite, we currently have ```r library(adbcdrivermanager) db <- adbc_database_init(adbcsqlite::adbcsqlite(), uri = ":memory:") con <- adbc_connection_init(db) write_adbc(iris[0L, ], con, "iris0") write_adbc(iris, con, "iris") str(as.data.frame(read_adbc(con, "SELECT Species from iris"))) #> 'data.frame': 150 obs. of 5 variables: #> $ Species: chr "setosa" "setosa" "setosa" "setosa" ... str(as.data.frame(read_adbc(con, "SELECT Species from iris0"))) #> 'data.frame': 0 obs. of 5 variables: #> $ Species: num ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
