dbExec(con, statement, ...)
dbConnection
).dbResult
, in the case of
an SQL statement that produces no output (e.g., INSERT
),
or dbResultSet
in the case of a
SELECT
-like statement.con.
fetch
.
Currently it is undefined how multiple result sets are to be
processed.On connections, SQL statements and resultSets:
dbExecStatement
dbExec
fetch
quickSQL
On transaction management:
On meta-data:
describe
getVersion
getDatabases
getTables
getFields
getCurrentDatabase
getTableIndices
getException
getStatement
hasCompleted
getRowCount
getAffectedRows
getNullOk
getInfo
mgr <- dbManger("Oracle")
con <- dbConnect(mgr)
rs <- dbExecStatement(con, "SELECT * from liv25")
data <- fetch(rs, n = -1)
Run the code above in your browser using DataLab