Last data update: 2014.03.03

Data Source

R Release (3.2.3)
CranContrib
BioConductor
All

Data Type

Packages
Functions
Images
Data set

Classification

Results 1 - 10 of 43 found.
[1] < 1 2 3 4 5 > [5]  Sort:

dbListResults (Package: DBI) : A list of all pending results.

List of DBIResult objects currently active on the connection.
● Data Source: CranContrib
● Keywords:
● Alias: dbListResults
● 0 images

dbGetInfo (Package: DBI) : Get DBMS metadata.

Get DBMS metadata.
● Data Source: CranContrib
● Keywords:
● Alias: dbGetInfo, dbGetInfo,DBIResult-method
● 0 images

dbSendQuery (Package: DBI) : Execute a statement on a given database connection.

The function dbSendQuery only submits and synchronously executes the SQL statement to the database engine. It does not extract any records — for that you need to use the function dbFetch, and then you must call dbClearResult when you finish fetching the records you need. For interactive use, you should almost always prefer dbGetQuery.
● Data Source: CranContrib
● Keywords:
● Alias: dbSendQuery
● 0 images

dbListConnections (Package: DBI) : List currently open connections.

Drivers that implement only a single connections MUST return a list containing a single element. If no connection are open, methods MUST return an empty list.
● Data Source: CranContrib
● Keywords:
● Alias: dbListConnections
● 0 images

dbIsValid (Package: DBI) : Is this DBMS object still valid?

This generic tests whether a database object is still valid (i.e. it hasn't been disconnected or cleared).
● Data Source: CranContrib
● Keywords:
● Alias: dbIsValid
● 0 images

ANSI (Package: DBI) : A dummy DBI connector that simulates ANSI-SQL compliance

A dummy DBI connector that simulates ANSI-SQL compliance
● Data Source: CranContrib
● Keywords: internal
● Alias: ANSI, show,AnsiConnection-method
● 0 images

DBIDriver-class (Package: DBI) : DBIDriver class.

Base class for all DBMS drivers (e.g., RSQLite, MySQL, PostgreSQL). The virtual class DBIDriver defines the operations for creating connections and defining data type mappings. Actual driver classes, for instance RPgSQL, RMySQL, etc. implement these operations in a DBMS-specific manner.
● Data Source: CranContrib
● Keywords:
● Alias: DBIDriver-class, show,DBIDriver-method
● 0 images

dbFetch (Package: DBI) : Fetch records from a previously executed query.

Fetch the next n elements (rows) from the result set and return them as a data.frame.
● Data Source: CranContrib
● Keywords:
● Alias: dbFetch, dbFetch,DBIResult-method, fetch
● 0 images

sqlParseVariables (Package: DBI) : Parse interpolated variables from SQL.

If you're implementing a backend that uses non-ANSI quoting or commenting rules, you'll need to implement a method for sqlParseVariables that calls sqlParseVariablesImpl with the appropriate quote and comment specifications.
● Data Source: CranContrib
● Keywords: internal
● Alias: sqlCommentSpec, sqlParseVariables, sqlParseVariables,DBIConnection-method, sqlParseVariablesImpl, sqlQuoteSpec
● 0 images

dbColumnInfo (Package: DBI) : Information about result types.

Produces a data.frame that describes the output of a query. The data.frame should have as many rows as there are output fields in the result set, and each column in the data.frame should describe an aspect of the result set field (field name, type, etc.)
● Data Source: CranContrib
● Keywords:
● Alias: dbColumnInfo
● 0 images