You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The values passed into field.types() may not match any values in the source dataframe. Desired result: the user receives a warning along the lines of Warning: columns {col_names} are listed in field.types argument but have no match in the dataframe.
This (slightly silly) example does not work, as TEXT_VAL is uppercase in the field.types but lowercase in the modified mtcars dataset.
library(DBI)
#> Warning: package 'DBI' was built under R version 3.5.1
library(odbc)
#> Warning: package 'odbc' was built under R version 3.5.1con<- dbConnect(odbc::odbc(), dsn='QMR_DEV', believeNRows=FALSE)
data<-dplyr::mutate(mtcars, text_val= paste0(rep("x", 700), collapse="" ) )
#> Warning: package 'bindrcpp' was built under R version 3.5.1
dbWriteTable(con,
"MTCARS",
data,
overwrite=TRUE,
field.types=list("TEXT_VAL"="varchar(750)" ) )
#> Error in result_insert_dataframe(rs@ptr, values): nanodbc/nanodbc.cpp:1587: HY008: Operation canceled
Whereas this works:
``` r
library(DBI)
#> Warning: package 'DBI' was built under R version 3.5.1
library(odbc)
#> Warning: package 'odbc' was built under R version 3.5.1con<- dbConnect(odbc::odbc(), dsn='QMR_DEV', believeNRows=FALSE)
data<-dplyr::mutate(mtcars, text_val= paste0(rep("x", 700), collapse="" ) )
#> Warning: package 'bindrcpp' was built under R version 3.5.1
dbWriteTable(con,
"MTCARS",
data,
overwrite=TRUE,
field.types=list("text_val"="varchar(750)" ) )
Issue Description and Expected Result
The values passed into
field.types()
may not match any values in the source dataframe. Desired result: the user receives a warning along the lines ofWarning: columns {col_names} are listed in field.types argument but have no match in the dataframe
.I think this is the location that would require some modification: https://github.com/r-dbi/odbc/blob/master/R/Table.R#L140-L142
Database
Netezza 07.01.0000 Release 7.1.0.6-P2
Reproducible Example
This (slightly silly) example does not work, as
TEXT_VAL
is uppercase in thefield.types
but lowercase in the modifiedmtcars
dataset.Whereas this works:
Created on 2019-04-09 by the reprex package (v0.2.1)
Session Info
I'd be happy to submit a PR with a prototype of this functionality if this is a desirable feature.
The text was updated successfully, but these errors were encountered: