idadf,idaSave,idaUpdate: Query, store and update data in the database.
Description
These functions allow to query, store and update data in the database.
Usually, it is easier to use idaQuery,ida.data.frame
and as.ida.data.frame instead of these methods.
They can be useful, however, if an explicit connection object is
needed, e.g. if there are several connections to different
databases.
if (FALSE) {
# create connection to DBcon <- idaConnect("BLUDB", "", "")
# create data.frame from tabledf <- idadf(con, "SELECT * FROM IRIS")
# close the connection againidaClose(con)
}