Closed lebensterben closed 5 years ago
rqdatatable is only for in-memory data.frames. To work with MySQL you just use rquery. The command to run in rquery would be execute() or materialize(). Some database examples can be found here.
rqdatatable is only for in-memory data.frames. To work with MySQL you just use rquery. The command to run in rquery would be execute() or materialize(). Some database examples can be found here.
@JohnMount Thanks.
Just for clarification, if it's only for in-memory data.frames, then what's the advantage of using rqdatatable instead of data.table? As for rquery, is it just a query generator?
Sent with GitHawk
rquery is "just a query generator." For in-memory rqdatatable is the same grammar as rquery, but has no advantage of data.table (which I am in fact a fan of).
rquery is "just a query generator." For in-memory rqdatatable is the same grammar as rquery, but has no advantage of data.table (which I am in fact a fan of).
@JohnMount thx
Sent with GitHawk
Hi,
I was trying to join two tables from a remote MySQL database. Currently rquery can do this job well, but when I try to execute the same query with rqdatatable::ex_data_table(), it says
Do you have plan to add MySQLConnection support in the near future?
Thanks