While RODBC is restricted to Windows computers with compatible architecture between R and any target RDMS, one of its key flexibilities is to work with Excel files as if they were SQL databases.
require(RODBC)
con = odbcConnectExcel("myfile.xlsx") # open a connection to the Excel file
s...