How can one connect a SQL table to R using SparklyR? The cheatsheet shows that you can use DBI::dbWriteTable
, but does not mention DBI::dbReadTable
. Let's say that my table is here:
driver = "SQL Server Native Client 11.0"
server = "corsql10.corwin.local"
database = "Project_DB"
table = "Participants"
Responses with example code are preferred. Thanks!!