close_conn {dabr} | R Documentation |
Close connection to database
Description
Close connection to database
Usage
close_conn(conn, ...)
## S3 method for class 'MariaDBConnection'
close_conn(conn, ...)
## Default S3 method:
close_conn(conn, ...)
Arguments
conn |
DB connection object. |
... |
Optional parameters. |
See Also
Other DB functions:
delete()
,
insert()
,
list_tables()
,
open_conn_mysql()
,
select_all()
,
select()
,
update()
Examples
## Not run:
conn <- open_conn_mysql("sys", "root")
close_conn(conn)
## End(Not run)
[Package dabr version 0.0.4 Index]