Connecting and disconnectingConnecting to and disconnecting from databases. |
|
---|---|
Create a connection to a DBMS |
|
Disconnect (close) a connection |
|
Check if a connection to a DBMS can be established |
|
Get DBMS metadata |
|
Is this DBMS object still valid? |
|
Is this DBMS object read only? |
|
DBIConnector class |
|
Get connection arguments |
|
TablesReading and writing entire tables. |
|
Copy data frames from database tables |
|
Copy data frames to database tables |
|
Create a table in the database |
|
Insert rows into a table |
|
Remove a table from the database |
|
List remote tables |
|
List field names of a remote table |
|
Does a table exist? |
|
List remote objects |
|
Convert row names back and forth between columns |
|
Queries and statementsSending queries and executing statements. |
|
Send query, retrieve results and then clear result set |
|
Execute an update statement, query number of rows affected, and then close result set |
|
ResultsMore control for sending queries and executing statements. |
|
Execute a query on a given database connection |
|
Execute a data manipulation statement on a given database connection |
|
Bind values to a parameterized/prepared statement |
|
Fetch records from a previously executed query |
|
The number of rows fetched so far |
|
The number of rows affected |
|
Get the statement associated with a result set |
|
Completion status |
|
Information about result types |
|
Clear a result set |
|
TransactionsEnsuring multiple statements are executed together, or not at all. |
|
Begin/commit/rollback SQL transactions |
|
Self-contained SQL transactions |
|
SQLTools for creating and parsing SQL queries. |
|
SQL quoting |
|
Determine the SQL data type of an object |
|
Quote identifiers |
|
Quote literal values |
|
Quote literal strings |
|
Compose query to create a simple table |
|
Compose query to insert rows into a table |
|
Convert a data frame into form suitable for upload to an SQL database |
|
Unquote identifiers |
|
Safely interpolate values into an SQL string |
|
ClassesS4 classes defined by DBI. |
|
DBI: R Database Interface |
|
DBIObject class |
|
DBIDriver class |
|
DBIConnection class |
|
|
DBIResult class |
DBIConnector class |
|
Refer to a table nested in a hierarchy (e.g. within a schema) |