lbsClear {CITAN} | R Documentation |
Clears a Local Bibliometric Storage by dropping all tables
named Biblio_*
and all views named ViewBiblio_*
.
lbsClear(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.
lbsConnect
, lbsCreate
,
Scopus_ImportSources
, lbsDeleteAllAuthorsDocuments
dbCommit
, dbRollback
## Not run:
conn <- lbsConnect("Bibliometrics.db");
lbsClear(conn);
dbCommit(conn);
lbsCreate(conn);
Scopus_ImportSources(conn);
## ...
lbsDisconnect(conn);
## End(Not run)