assignTable.MySQLConnection(con, name, value, field.types, row.names, overwrite, append, ...)
value
to be mapped to a
row_names
MySQL column. By default row.names(value)
is added as the first column of the value
data.frame,
and this expanded data.frame is tratable
. Each member of the list maps the
corresponding field in value
into a MySQL data type.
By default, this argument is built by invoking
help(generic)
for a description of the
functionality that this method provides in the
context of the MySQL driver.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
m <- dbManager("MySQL")
con <- dbConnect(m, user="opto", pass="pure-light", dbname="opto")
Run the code above in your browser using DataLab