From 854e0ebfbcabe0e25f0d4689b6565bd857bd9342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Tue, 1 May 2018 23:52:07 +0000 Subject: [PATCH] Deploy from Travis build 1099 [ci skip] Build URL: https://travis-ci.org/r-dbi/DBI/builds/373707620 Commit: ffde98a93b9c92d3cc50c55673a2d111fde6d4e3 --- docs/articles/DBI-1.html | 2 +- docs/articles/DBI-proposal.html | 2 +- docs/articles/backend.html | 2 +- docs/articles/index.html | 2 +- docs/articles/spec.html | 152 +----------------------- docs/authors.html | 2 +- docs/index.html | 2 +- docs/news/index.html | 63 +++++----- docs/reference/ANSI.html | 2 +- docs/reference/DBI-package.html | 2 +- docs/reference/DBIConnection-class.html | 2 +- docs/reference/DBIDriver-class.html | 2 +- docs/reference/DBIObject-class.html | 2 +- docs/reference/DBIResult-class.html | 2 +- docs/reference/Id.html | 2 +- docs/reference/SQL.html | 2 +- docs/reference/dbAppendTable.html | 2 +- docs/reference/dbBind.html | 2 +- docs/reference/dbCallProc.html | 2 +- docs/reference/dbCanConnect.html | 12 +- docs/reference/dbClearResult.html | 2 +- docs/reference/dbColumnInfo.html | 2 +- docs/reference/dbConnect.html | 2 +- docs/reference/dbCreateTable.html | 2 +- docs/reference/dbDataType.html | 4 +- docs/reference/dbDisconnect.html | 2 +- docs/reference/dbDriver.html | 2 +- docs/reference/dbExecute.html | 12 +- docs/reference/dbExistsTable.html | 4 +- docs/reference/dbFetch.html | 4 +- docs/reference/dbGetDBIVersion.html | 2 +- docs/reference/dbGetException.html | 2 +- docs/reference/dbGetInfo.html | 2 +- docs/reference/dbGetQuery.html | 12 +- docs/reference/dbGetRowCount.html | 2 +- docs/reference/dbGetRowsAffected.html | 2 +- docs/reference/dbGetStatement.html | 2 +- docs/reference/dbHasCompleted.html | 2 +- docs/reference/dbIsReadOnly.html | 2 +- docs/reference/dbIsValid.html | 2 +- docs/reference/dbListConnections.html | 2 +- docs/reference/dbListFields.html | 2 +- docs/reference/dbListObjects.html | 12 +- docs/reference/dbListResults.html | 2 +- docs/reference/dbListTables.html | 2 +- docs/reference/dbQuoteIdentifier.html | 10 +- docs/reference/dbQuoteLiteral.html | 12 +- docs/reference/dbQuoteString.html | 16 +-- docs/reference/dbReadTable.html | 6 +- docs/reference/dbRemoveTable.html | 4 +- docs/reference/dbSendQuery.html | 2 +- docs/reference/dbSendStatement.html | 12 +- docs/reference/dbSetDataMappings.html | 2 +- docs/reference/dbUnquoteIdentifier.html | 4 +- docs/reference/dbWithTransaction.html | 12 +- docs/reference/dbWriteTable.html | 4 +- docs/reference/hidden_aliases.html | 2 +- docs/reference/index.html | 2 +- docs/reference/make.db.names.html | 2 +- docs/reference/rownames.html | 2 +- docs/reference/sqlAppendTable.html | 2 +- docs/reference/sqlCreateTable.html | 2 +- docs/reference/sqlData.html | 2 +- docs/reference/sqlInterpolate.html | 2 +- docs/reference/sqlParseVariables.html | 2 +- docs/reference/transactions.html | 2 +- 66 files changed, 103 insertions(+), 348 deletions(-) diff --git a/docs/articles/DBI-1.html b/docs/articles/DBI-1.html index 671305bf4..9d2e44268 100644 --- a/docs/articles/DBI-1.html +++ b/docs/articles/DBI-1.html @@ -29,7 +29,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/articles/DBI-proposal.html b/docs/articles/DBI-proposal.html index 2c0647085..176bfc975 100644 --- a/docs/articles/DBI-proposal.html +++ b/docs/articles/DBI-proposal.html @@ -29,7 +29,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/articles/backend.html b/docs/articles/backend.html index f96954f11..6f6627720 100644 --- a/docs/articles/backend.html +++ b/docs/articles/backend.html @@ -29,7 +29,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/articles/index.html b/docs/articles/index.html index 1499472df..cd8b54839 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -55,7 +55,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/articles/spec.html b/docs/articles/spec.html index b4327e3d3..f67eb3919 100644 --- a/docs/articles/spec.html +++ b/docs/articles/spec.html @@ -29,7 +29,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -144,16 +144,6 @@

Returns an SQL string that describes the SQL data type to be used for an object. The default implementation of this generic determines the SQL type of an R object according to the SQL 92 specification, which may serve as a starting point for driver implementations. DBI also provides an implementation for data.frame which will return a character vector giving the type for each column in the dataframe.

-

-Methods in other packages -

-

Arguments

@@ -591,16 +581,6 @@

Fetch the next n elements (rows) from the result set and return them as a data.frame.

-

-Methods in other packages -

-

Arguments

@@ -1106,16 +1086,6 @@

Returns the result of a query as a data frame. dbGetQuery() comes with a default implementation (which should work with most backends) that calls dbSendQuery(), then dbFetch(), ensuring that the result is always free-d by dbClearResult().

-

-Methods in other packages -

-

Arguments

@@ -1243,16 +1213,6 @@

The dbSendStatement() method only submits and synchronously executes the SQL data manipulation statement (e.g., UPDATE, DELETE, INSERT INTO, DROP TABLE, …) to the database engine. To query the number of affected rows, call dbGetRowsAffected() on the returned result object. You must also call dbClearResult() after that. For interactive use, you should almost always prefer dbExecute().

-

-Methods in other packages -

-

Arguments

@@ -1379,16 +1339,6 @@

Executes a statement and returns the number of rows affected. dbExecute() comes with a default implementation (which should work with most backends) that calls dbSendStatement(), then dbGetRowsAffected(), ensuring that the result is always free-d by dbClearResult().

-

-Methods in other packages -

-

Arguments

@@ -1505,26 +1455,6 @@

Call this method to generate a string that is suitable for use in a query as a string literal, to make sure that you generate valid SQL and protect against SQL injection attacks.

-

-Methods in other packages -

-

Arguments

@@ -1617,31 +1547,6 @@

Call this method to generate a string that is suitable for use in a query as a column or table name, to make sure that you generate valid SQL and protect against SQL injection attacks. The inverse operation is dbUnquoteIdentifier().

-

-Methods in other packages -

-

Arguments

@@ -1729,21 +1634,6 @@

Reads a database table to a data frame, optionally converting a column to row names and converting the column names to valid R identifiers.

-

-Methods in other packages -

-

Arguments

@@ -1886,16 +1776,6 @@

Writes, overwrites or appends a data frame to a database table, optionally converting row names to a column and specifying SQL data types for fields.

-

-Methods in other packages -

-

Arguments

@@ -2232,16 +2112,6 @@

Returns if a table given by name exists in the database.

-

-Methods in other packages -

-

Arguments

@@ -2336,16 +2206,6 @@

Remove a remote table (e.g., created by dbWriteTable()) from the database.

-

-Methods in other packages -

-

Arguments

@@ -3078,16 +2938,6 @@

Given that transactions are implemented, this function allows you to pass in code that is run in a transaction. The default method of dbWithTransaction() calls dbBegin() before executing the code, and dbCommit() after successful completion, or dbRollback() in case of an error. The advantage is that you don’t have to remember to do dbBegin() and dbCommit() or dbRollback() – that is all taken care of. The special function dbBreak() allows an early exit with rollback, it can be called only inside dbWithTransaction().

-

-Methods in other packages -

-

Arguments

diff --git a/docs/authors.html b/docs/authors.html index 7ce41883c..b0b0ceb56 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -55,7 +55,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/index.html b/docs/index.html index 2bc1ad52a..206ca9c69 100644 --- a/docs/index.html +++ b/docs/index.html @@ -32,7 +32,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/news/index.html b/docs/news/index.html index 7d60e8baf..98bf6ca67 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -55,7 +55,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -114,49 +114,49 @@

Changelog

-
+

-DBI 0.8.0.9003 (2018-05-01) Unreleased +DBI 1.0.0 (2018-05-02) Unreleased

+
+

+New generics

-
-

-DBI 0.8.0.9002 (2018-04-27) Unreleased -

+
+

+Changes

-
-

-DBI 0.8.0.9001 (2018-04-25) Unreleased -

+
+

+Documentation updates

+
+
+

+Bug fixes

+
  • Pass missing value argument to secondary dbWriteTable() call (#737, @jimhester).
  • -
  • Fix dbWriteTable() forwarder for signature c("DBIConnection", "Id", "data.frame").
  • The Id class now uses <Id> and not <Table> when printing.
  • The default dbUnquoteIdentifier() implementation now complies to the spec.
-
-

-DBI 0.8.0.9000 (2018-03-22) Unreleased -

-
    -
  • Same as DBI 0.8, switching to semantic versioning.
  • -

@@ -171,9 +171,9 @@

  • The dbReadTable(), dbWriteTable(), dbExistsTable(), dbRemoveTable(), and dbListFields() generics now specialize over the first two arguments to support implementations with the Id S4 class as type for the second argument. Some packages may need to update their documentation to satisfy R CMD check again.
  • -
    +

    -New generics

    +New generics
    • Schema support: Export Id(), new generics dbListObjects() and dbUnquoteIdentifier(), methods for Id that call dbQuoteIdentifier() and then forward (#220).
    • New dbQuoteLiteral() generic. The default implementation uses switchpatch to avoid dispatch ambiguities, and forwards to dbQuoteString() for character vectors. Backends may override methods that also dispatch on the second argument, but in this case also an override for the "SQL" class is necessary (#172).
    • @@ -209,9 +209,9 @@

    • The deprecated print.list.pairs() has been removed.
    -
    +

    -Bug fixes

    +Bug fixes
    • Fix dbDataType() for AsIs object (#198, @yutannihilation).
    • Fix dbQuoteString() and dbQuoteIdentifier() to ignore invalid UTF-8 strings (r-dbi/DBItest#156).
    • @@ -556,10 +556,7 @@

      Contents

      diff --git a/docs/reference/DBI-package.html b/docs/reference/DBI-package.html index 22fe2aa58..3befb5ea8 100644 --- a/docs/reference/DBI-package.html +++ b/docs/reference/DBI-package.html @@ -61,7 +61,7 @@ DBI - 0.8.0.9003 + 1.0.0

    diff --git a/docs/reference/DBIConnection-class.html b/docs/reference/DBIConnection-class.html index 68ee05026..41d361e2b 100644 --- a/docs/reference/DBIConnection-class.html +++ b/docs/reference/DBIConnection-class.html @@ -60,7 +60,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/DBIDriver-class.html b/docs/reference/DBIDriver-class.html index 02fd181eb..2c934bc35 100644 --- a/docs/reference/DBIDriver-class.html +++ b/docs/reference/DBIDriver-class.html @@ -62,7 +62,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/DBIObject-class.html b/docs/reference/DBIObject-class.html index 5b53a4420..652ae230a 100644 --- a/docs/reference/DBIObject-class.html +++ b/docs/reference/DBIObject-class.html @@ -59,7 +59,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/DBIResult-class.html b/docs/reference/DBIResult-class.html index 62112246b..769c3e59e 100644 --- a/docs/reference/DBIResult-class.html +++ b/docs/reference/DBIResult-class.html @@ -62,7 +62,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/Id.html b/docs/reference/Id.html index 624b5abed..2708a35ee 100644 --- a/docs/reference/Id.html +++ b/docs/reference/Id.html @@ -59,7 +59,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/SQL.html b/docs/reference/SQL.html index fcfd4ffad..92f708e99 100644 --- a/docs/reference/SQL.html +++ b/docs/reference/SQL.html @@ -66,7 +66,7 @@ DBI - 0.8.0.9003 + 1.0.0
    diff --git a/docs/reference/dbAppendTable.html b/docs/reference/dbAppendTable.html index f0f377c6a..ef3b05805 100644 --- a/docs/reference/dbAppendTable.html +++ b/docs/reference/dbAppendTable.html @@ -66,7 +66,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbBind.html b/docs/reference/dbBind.html index 100c4a2de..3048d75bf 100644 --- a/docs/reference/dbBind.html +++ b/docs/reference/dbBind.html @@ -68,7 +68,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbCallProc.html b/docs/reference/dbCallProc.html index 13324c2cd..1299fd248 100644 --- a/docs/reference/dbCallProc.html +++ b/docs/reference/dbCallProc.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbCanConnect.html b/docs/reference/dbCanConnect.html index 322b1317c..1ed685b7e 100644 --- a/docs/reference/dbCanConnect.html +++ b/docs/reference/dbCanConnect.html @@ -34,10 +34,6 @@ a connection object. The default implementation opens a connection and disconnects on success, but individual backends might implement a lighter-weight check. -Methods in other packages" /> - - @@ -66,7 +62,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -132,11 +128,7 @@

    Check if a connection to a DBMS can be established

    a connection object. The default implementation opens a connection and disconnects on success, but individual backends might implement a lighter-weight check.

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbClearResult.html b/docs/reference/dbClearResult.html index f81eb53c9..7c23d05fe 100644 --- a/docs/reference/dbClearResult.html +++ b/docs/reference/dbClearResult.html @@ -65,7 +65,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbColumnInfo.html b/docs/reference/dbColumnInfo.html index d226e6c4c..cf03890f5 100644 --- a/docs/reference/dbColumnInfo.html +++ b/docs/reference/dbColumnInfo.html @@ -61,7 +61,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbConnect.html b/docs/reference/dbConnect.html index c3601b905..a6d761fbb 100644 --- a/docs/reference/dbConnect.html +++ b/docs/reference/dbConnect.html @@ -70,7 +70,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbCreateTable.html b/docs/reference/dbCreateTable.html index d15943e14..3b70d69ff 100644 --- a/docs/reference/dbCreateTable.html +++ b/docs/reference/dbCreateTable.html @@ -63,7 +63,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbDataType.html b/docs/reference/dbDataType.html index 9c6c7711f..0854b2f44 100644 --- a/docs/reference/dbDataType.html +++ b/docs/reference/dbDataType.html @@ -40,7 +40,6 @@ Methods in other packages" /> @@ -71,7 +70,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -143,7 +142,6 @@

    Determine the SQL data type of an object

    Methods in other packages

    diff --git a/docs/reference/dbDisconnect.html b/docs/reference/dbDisconnect.html index f7e3dee29..29573245d 100644 --- a/docs/reference/dbDisconnect.html +++ b/docs/reference/dbDisconnect.html @@ -64,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbDriver.html b/docs/reference/dbDriver.html index 7562790c9..a677d3fbc 100644 --- a/docs/reference/dbDriver.html +++ b/docs/reference/dbDriver.html @@ -66,7 +66,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbExecute.html b/docs/reference/dbExecute.html index 6b07e7b7e..846f7fa84 100644 --- a/docs/reference/dbExecute.html +++ b/docs/reference/dbExecute.html @@ -35,10 +35,6 @@ (which should work with most backends) that calls dbSendStatement(), then dbGetRowsAffected(), ensuring that the result is always free-d by dbClearResult(). -Methods in other packages" /> - - @@ -67,7 +63,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -134,11 +130,7 @@

    Execute an update statement, query number of rows affected, and then close r (which should work with most backends) that calls dbSendStatement(), then dbGetRowsAffected(), ensuring that the result is always free-d by dbClearResult().

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbExistsTable.html b/docs/reference/dbExistsTable.html index 55b5de29a..6d795c1f9 100644 --- a/docs/reference/dbExistsTable.html +++ b/docs/reference/dbExistsTable.html @@ -34,7 +34,6 @@ Methods in other packages" /> @@ -64,7 +63,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -130,7 +129,6 @@

    Does a table exist?

    Methods in other packages

    diff --git a/docs/reference/dbFetch.html b/docs/reference/dbFetch.html index a158784ce..d05401edc 100644 --- a/docs/reference/dbFetch.html +++ b/docs/reference/dbFetch.html @@ -35,7 +35,6 @@ Methods in other packages" /> @@ -65,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -132,7 +131,6 @@

    Fetch records from a previously executed query

    Methods in other packages

    diff --git a/docs/reference/dbGetDBIVersion.html b/docs/reference/dbGetDBIVersion.html index fd9f713ce..05d34aef2 100644 --- a/docs/reference/dbGetDBIVersion.html +++ b/docs/reference/dbGetDBIVersion.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbGetException.html b/docs/reference/dbGetException.html index e8908437a..9c1dc388f 100644 --- a/docs/reference/dbGetException.html +++ b/docs/reference/dbGetException.html @@ -59,7 +59,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbGetInfo.html b/docs/reference/dbGetInfo.html index 3c4928b22..8f695daec 100644 --- a/docs/reference/dbGetInfo.html +++ b/docs/reference/dbGetInfo.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbGetQuery.html b/docs/reference/dbGetQuery.html index cd5e5f3dc..59b970c00 100644 --- a/docs/reference/dbGetQuery.html +++ b/docs/reference/dbGetQuery.html @@ -35,10 +35,6 @@ (which should work with most backends) that calls dbSendQuery(), then dbFetch(), ensuring that the result is always free-d by dbClearResult(). -Methods in other packages" /> - - @@ -67,7 +63,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -134,11 +130,7 @@

    Send query, retrieve results and then clear result set

    (which should work with most backends) that calls dbSendQuery(), then dbFetch(), ensuring that the result is always free-d by dbClearResult().

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbGetRowCount.html b/docs/reference/dbGetRowCount.html index 81cbf3dc2..180096bfe 100644 --- a/docs/reference/dbGetRowCount.html +++ b/docs/reference/dbGetRowCount.html @@ -64,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbGetRowsAffected.html b/docs/reference/dbGetRowsAffected.html index 43362b9e4..c82dbaecb 100644 --- a/docs/reference/dbGetRowsAffected.html +++ b/docs/reference/dbGetRowsAffected.html @@ -64,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbGetStatement.html b/docs/reference/dbGetStatement.html index 0c70cd281..e0d8485c5 100644 --- a/docs/reference/dbGetStatement.html +++ b/docs/reference/dbGetStatement.html @@ -64,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbHasCompleted.html b/docs/reference/dbHasCompleted.html index 86efe6e00..6c96f0a8b 100644 --- a/docs/reference/dbHasCompleted.html +++ b/docs/reference/dbHasCompleted.html @@ -65,7 +65,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbIsReadOnly.html b/docs/reference/dbIsReadOnly.html index 9f2cf777a..78e0bd424 100644 --- a/docs/reference/dbIsReadOnly.html +++ b/docs/reference/dbIsReadOnly.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbIsValid.html b/docs/reference/dbIsValid.html index 63d33a104..dbea9478c 100644 --- a/docs/reference/dbIsValid.html +++ b/docs/reference/dbIsValid.html @@ -66,7 +66,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbListConnections.html b/docs/reference/dbListConnections.html index 0bbc93ae4..932f3c2e0 100644 --- a/docs/reference/dbListConnections.html +++ b/docs/reference/dbListConnections.html @@ -59,7 +59,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbListFields.html b/docs/reference/dbListFields.html index 6fab19baa..b023e1507 100644 --- a/docs/reference/dbListFields.html +++ b/docs/reference/dbListFields.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbListObjects.html b/docs/reference/dbListObjects.html index d0ef3f3f4..9e25b69f7 100644 --- a/docs/reference/dbListObjects.html +++ b/docs/reference/dbListObjects.html @@ -39,10 +39,6 @@ This allows exploration of all database objects available to the current user, including those that can only be accessed by giving the full namespace. -Methods in other packages" /> - - @@ -71,7 +67,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -142,11 +138,7 @@

    List remote objects

    This allows exploration of all database objects available to the current user, including those that can only be accessed by giving the full namespace.

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbListResults.html b/docs/reference/dbListResults.html index 54c445f15..23d12d256 100644 --- a/docs/reference/dbListResults.html +++ b/docs/reference/dbListResults.html @@ -60,7 +60,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbListTables.html b/docs/reference/dbListTables.html index f0adb4574..0a74e67a1 100644 --- a/docs/reference/dbListTables.html +++ b/docs/reference/dbListTables.html @@ -66,7 +66,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbQuoteIdentifier.html b/docs/reference/dbQuoteIdentifier.html index c6413285e..f7d51e81c 100644 --- a/docs/reference/dbQuoteIdentifier.html +++ b/docs/reference/dbQuoteIdentifier.html @@ -37,10 +37,6 @@ Methods in other packages" /> @@ -71,7 +67,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -140,10 +136,6 @@

    Quote identifiers

    Methods in other packages

    diff --git a/docs/reference/dbQuoteLiteral.html b/docs/reference/dbQuoteLiteral.html index a811bb045..32278d46b 100644 --- a/docs/reference/dbQuoteLiteral.html +++ b/docs/reference/dbQuoteLiteral.html @@ -33,10 +33,6 @@ - - @@ -65,7 +61,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -130,11 +126,7 @@

    Quote literal values

    Call these methods to generate a string that is suitable for use in a query as a literal value of the correct type, to make sure that you generate valid SQL and protect against SQL injection attacks.

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbQuoteString.html b/docs/reference/dbQuoteString.html index 195957479..b00586c1f 100644 --- a/docs/reference/dbQuoteString.html +++ b/docs/reference/dbQuoteString.html @@ -33,12 +33,6 @@ - - @@ -67,7 +61,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -132,13 +126,7 @@

    Quote literal strings

    Call this method to generate a string that is suitable for use in a query as a string literal, to make sure that you generate valid SQL and protect against SQL injection attacks.

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbReadTable.html b/docs/reference/dbReadTable.html index 7ee6c6908..349ad11f0 100644 --- a/docs/reference/dbReadTable.html +++ b/docs/reference/dbReadTable.html @@ -36,8 +36,6 @@ Methods in other packages" /> @@ -67,7 +65,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -135,8 +133,6 @@

    Copy data frames from database tables

    Methods in other packages

    diff --git a/docs/reference/dbRemoveTable.html b/docs/reference/dbRemoveTable.html index bb0c86339..5c139157c 100644 --- a/docs/reference/dbRemoveTable.html +++ b/docs/reference/dbRemoveTable.html @@ -35,7 +35,6 @@ Methods in other packages" /> @@ -65,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -132,7 +131,6 @@

    Remove a table from the database

    Methods in other packages

    diff --git a/docs/reference/dbSendQuery.html b/docs/reference/dbSendQuery.html index e3fbd2a65..2322fac83 100644 --- a/docs/reference/dbSendQuery.html +++ b/docs/reference/dbSendQuery.html @@ -68,7 +68,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbSendStatement.html b/docs/reference/dbSendStatement.html index 52ef8a2d8..b8005ec74 100644 --- a/docs/reference/dbSendStatement.html +++ b/docs/reference/dbSendStatement.html @@ -37,10 +37,6 @@ returned result object. You must also call dbClearResult() after that. For interactive use, you should almost always prefer dbExecute(). -Methods in other packages" /> - - @@ -69,7 +65,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -138,11 +134,7 @@

    Execute a data manipulation statement on a given database connection

    returned result object. You must also call dbClearResult() after that. For interactive use, you should almost always prefer dbExecute().

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbSetDataMappings.html b/docs/reference/dbSetDataMappings.html index e3c83e81f..403ef2fd6 100644 --- a/docs/reference/dbSetDataMappings.html +++ b/docs/reference/dbSetDataMappings.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/dbUnquoteIdentifier.html b/docs/reference/dbUnquoteIdentifier.html index 60db09f0a..a70a0fca9 100644 --- a/docs/reference/dbUnquoteIdentifier.html +++ b/docs/reference/dbUnquoteIdentifier.html @@ -35,7 +35,6 @@ Methods in other packages" /> @@ -65,7 +64,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -132,7 +131,6 @@

    Unquote identifiers

    Methods in other packages

    diff --git a/docs/reference/dbWithTransaction.html b/docs/reference/dbWithTransaction.html index 9b6ce02bd..5d450aaf1 100644 --- a/docs/reference/dbWithTransaction.html +++ b/docs/reference/dbWithTransaction.html @@ -41,10 +41,6 @@ dbRollback() -- that is all taken care of. The special function dbBreak() allows an early exit with rollback, it can be called only inside dbWithTransaction(). -Methods in other packages" /> - - @@ -73,7 +69,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -146,11 +142,7 @@

    Self-contained SQL transactions

    dbRollback() -- that is all taken care of. The special function dbBreak() allows an early exit with rollback, it can be called only inside dbWithTransaction().

    -

    Methods in other packages

    - -

    +

    diff --git a/docs/reference/dbWriteTable.html b/docs/reference/dbWriteTable.html index 052acda8e..872bdf425 100644 --- a/docs/reference/dbWriteTable.html +++ b/docs/reference/dbWriteTable.html @@ -35,7 +35,6 @@ Methods in other packages" /> @@ -66,7 +65,7 @@ DBI - 0.8.0.9003 + 1.0.0 @@ -133,7 +132,6 @@

    Copy data frames to database tables

    Methods in other packages

    diff --git a/docs/reference/hidden_aliases.html b/docs/reference/hidden_aliases.html index 1318311ea..f6ab3fd2c 100644 --- a/docs/reference/hidden_aliases.html +++ b/docs/reference/hidden_aliases.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/index.html b/docs/reference/index.html index e030bc275..a3247fb69 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -55,7 +55,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/make.db.names.html b/docs/reference/make.db.names.html index 53ebd48e6..141eba5d1 100644 --- a/docs/reference/make.db.names.html +++ b/docs/reference/make.db.names.html @@ -59,7 +59,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/rownames.html b/docs/reference/rownames.html index f519fd8ef..84dcbe63b 100644 --- a/docs/reference/rownames.html +++ b/docs/reference/rownames.html @@ -63,7 +63,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/sqlAppendTable.html b/docs/reference/sqlAppendTable.html index 89f297d4b..309e7889c 100644 --- a/docs/reference/sqlAppendTable.html +++ b/docs/reference/sqlAppendTable.html @@ -62,7 +62,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/sqlCreateTable.html b/docs/reference/sqlCreateTable.html index 632306ec1..0c0a74f67 100644 --- a/docs/reference/sqlCreateTable.html +++ b/docs/reference/sqlCreateTable.html @@ -60,7 +60,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/sqlData.html b/docs/reference/sqlData.html index d4d5281a2..ee4a76f57 100644 --- a/docs/reference/sqlData.html +++ b/docs/reference/sqlData.html @@ -62,7 +62,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/sqlInterpolate.html b/docs/reference/sqlInterpolate.html index efc56ea4e..5956ffcd2 100644 --- a/docs/reference/sqlInterpolate.html +++ b/docs/reference/sqlInterpolate.html @@ -58,7 +58,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/sqlParseVariables.html b/docs/reference/sqlParseVariables.html index b737a579f..5d1354870 100644 --- a/docs/reference/sqlParseVariables.html +++ b/docs/reference/sqlParseVariables.html @@ -61,7 +61,7 @@ DBI - 0.8.0.9003 + 1.0.0 diff --git a/docs/reference/transactions.html b/docs/reference/transactions.html index 7ef06abdb..eb3e746b4 100644 --- a/docs/reference/transactions.html +++ b/docs/reference/transactions.html @@ -70,7 +70,7 @@ DBI - 0.8.0.9003 + 1.0.0