We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm now convinced that the problem must be solved by using an appropriate driver, or putting long columns at the end of the query.
Still: Can we do better than throwing "Invalid Descriptor Index" at the user?
"Invalid Descriptor Index"
library(DBI) library(tidyverse) con <- dbConnect(odbc::odbc(), "mssql-test-ms", uid = "kirill", pwd = keyring::key_get("mssql", "kirill")) data <- tibble(a = 1:3, b = "a", c = 1) copy_to(con, data, name = "##data1", types = c("integer", "varchar(max)", "real")) %>% collect() #> Error in result_fetch(res@ptr, n): nanodbc/nanodbc.cpp:2908: 00000: [Microsoft][ODBC Driver 17 for SQL Server]Invalid Descriptor Index #> Warning in dbClearResult(res): Result already cleared
Created on 2020-04-28 by the reprex package (v0.3.0)
Follow-up to #309.
The text was updated successfully, but these errors were encountered:
Should be fixed by #381
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I'm now convinced that the problem must be solved by using an appropriate driver, or putting long columns at the end of the query.
Still: Can we do better than throwing
"Invalid Descriptor Index"
at the user?Created on 2020-04-28 by the reprex package (v0.3.0)
Follow-up to #309.
The text was updated successfully, but these errors were encountered: