Skip to contents

Releases resources held by an lb_connection or lb_database object. After calling lb_close(), the object should not be used.

Usage

lb_close(x, ...)

Arguments

x

An lb_connection or lb_database object.

...

Unused; included for S3 generics compatibility.

Value

Invisible NULL.

Examples

if (FALSE) { # \dontrun{
db   <- lb_database(":memory:")
conn <- lb_connection(db)
lb_close(conn)
lb_close(db)
} # }