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
One of our customers surfaced this issue using our Oracle odbc driver and the odbc and DBI packages. I spent some time trying to successfully reproduce. It looks like an issue with the latest version of odbc as 1.4.2 seems to work okay.
Output from running the last DBI::dbAppendTable command yields the following error:
> DBI::dbAppendTable(
+ con,
+ name = "TEST_TABELL",
+ value = TEST_TABELL
+ )
Error: nanodbc/nanodbc.cpp:1783: 00000
[RStudio][OracleOCI] (3000) Oracle Caller Interface: ORA-01861: literal does not match format string
Thanks for the report. Do you have the ability to test with the development version of the package / master branch of this repository? It may be the case that this was fixed in #810
Hi Team,
One of our customers surfaced this issue using our Oracle odbc driver and the
odbc
andDBI
packages. I spent some time trying to successfully reproduce. It looks like an issue with the latest version ofodbc
as1.4.2
seems to work okay.Issue: https://rstudioide.zendesk.com/agent/tickets/114557
With the following latest stable versions:
The customer provided reproducible code, which is available in the Zendesk ticket.
Here's the gist of it from my testing:
Non-working code
Output from running the last
DBI::dbAppendTable
command yields the following error:No rows in table:
Working code
I just changed the following rows from
1025
to1024
from the code example above.Code produces no output and I can see the rows added to table:
Working older
odbc
verisionIf I use an older
odbc
package with the latestDBI
package, the original working code is successful:Using
1025
rows to append to table:The text was updated successfully, but these errors were encountered: