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 DBIConnection generics: DBIConnection-class, dbDataType, dbExecute, dbExistsTable, dbGetException, dbGetInfo, dbGetQuery, dbIsValid, dbListFields, dbListResults, dbListTables, dbReadTable, dbRemoveTable, dbSendQuery, dbSendStatement

Examples

con <- dbConnect(RSQLite::SQLite(), ":memory:")
dbDisconnect(con)

[Package DBI version 0.5-1 Index]