We are moving away from RODBC which seems to have a limited error handling system (sometimes to query goes through even though there was an error, and there is no way to get the error message. we have tried all RODBC functions)
However there seem to be 2 packages similar: odbc and DBI, Can someone explain what is the difference between the two? Both seem to work well.
odbc
when underlying packageDBI
seems to do same (with same function names) – Domitianodbc
will translate dplyr code to SQL and run it on the database andDBI
won't. – Sergiosergipe