Skip to content
New issue

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

Better behavior for "Invalid Descriptor Index" problem #358

Closed
krlmlr opened this issue Apr 28, 2020 · 1 comment
Closed

Better behavior for "Invalid Descriptor Index" problem #358

krlmlr opened this issue Apr 28, 2020 · 1 comment
Labels
feature a feature request or enhancement

Comments

@krlmlr
Copy link
Member

krlmlr commented Apr 28, 2020

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?

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.

@jimhester jimhester added the feature a feature request or enhancement label May 1, 2020
@jimhester
Copy link
Contributor

Should be fixed by #381

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature a feature request or enhancement
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants