Escreva ou atualize (append=True) um quadro de dados em uma tabela no banco de dados ODBC
sqlDrop(channel, sqtable)
Remover uma tabela do banco de dados ODBC
close(channel)
Fechar a conexão
# RODBC Example
# import 2 tables (Crime and Punishment) from a DBMS
# into R
data frames (and call them crimedat and pundat)
library(RODBC)
myconn <-odbcConnect("mydsn", uid="Rob", pwd="aardvark")
crimedat <- sqlFetch(myconn, "Crime")
pundat <- sqlQuery(myconn, "select * from Punishment")
close(myconn)