dbDisconnect {DBI}R Documentation

Disconnect (close) a connection

Description

This closes the connection, discards all pending work, and frees resources (e.g., memory, sockets).

Usage

dbDisconnect(conn, ...)

Arguments

conn

A DBIConnection object, as produced by dbConnect.

...

Other parameters passed on to methods.

Value

a logical vector of length 1, indicating success or failure.

See Also

Other connection methods: dbExistsTable, dbGetException, dbGetQuery, dbListFields, dbListResults, dbListTables, dbReadTable, dbRemoveTable, dbSendQuery

Examples

if (require("RSQLite")) {
con <- dbConnect(RSQLite::SQLite(), ":memory:")
dbDisconnect(con)
}

[Package DBI version 0.4-1 Index]