lbsDeleteAllAuthorsDocuments {CITAN} | R Documentation |
Deletes author, citation, document, and survey information from a Local Bibliometric Storage.
lbsDeleteAllAuthorsDocuments(conn, verbose = TRUE)
conn |
database connection object, see |
verbose |
logical; |
For safety reasons, an SQL transaction opened at the beginning of the removal process is not committed (closed) automatically. You should do manually (or rollback it), see Examples below.
TRUE
on success.
lbsClear
,
dbCommit
,
dbRollback
## Not run:
conn <- lbsConnect("Bibliometrics.db")
lbsDeleteAllAuthorsDocuments(conn)
dbCommit(conn)
## ...
lbsDisconnect(conn)
## End(Not run)