Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connect R to Quickbooks [closed]

Tags:

r

quickbooks

Has anyone connected the R package to QuickBooks? I know there is an ODBC driver than can be bought. Just wondering if anyone has already gone down this road.

Any insight will be much appreciated!

~ Brock

like image 618
Btibert3 Avatar asked Apr 21 '10 01:04

Btibert3


1 Answers

Google QODBC. It allows you to access Quickbooks via ODBC.

However, it works through creating an interface to XML files. For large QB files it can be painfully slow if you don't properly use indices and limit the data to exactly what is necessary. It's also very quirky. Lastly, not all tables are exposed (Quickbooks fault, not theirs) such as some payroll tables.

What I often ended up doing for large QB files is exporting the data at night via the QODBC driver into a sql database so that ad hoc analysis could be run quickly without compromising the performance for QB users during the day.

Good luck!

like image 76
Robert Avatar answered Sep 18 '22 21:09

Robert