methods.MySQL {RMySQL}R Documentation

Support MySQL methods

Description

MySQL support methods. For details on what it does, see the documentation of the generic function.

Usage

<generic>.MySQLManager(obj, ...)   

Arguments

<generic> refers to an actual generic function name, e.g., dbConnect
obj is some kind of MySQL object
... additional arguments

Details

See help(generic) for a description of the functionality that this method provides in the context of the MySQL driver.

See Also

On database managers:

dbManager MySQL load unload

On connections, SQL statements and resultSets:

dbExecStatement dbExec fetch quickSQL

On transaction management:

commit rollback

On meta-data:

describe getVersion getDatabases getTables getFields getCurrentDatabase getTableIndices getException getStatement hasCompleted getRowCount getAffectedRows getNullOk getInfo

Examples

m <- dbManager("MySQL")
con <- dbConnect(m, user="opto", pass="pure-light", dbname="opto")


[Package Contents]