You cannot, as far as I know. The "database" is actually a filehash file that you can reconnect and download as follows:
db <- dbInit("pcorpus") pc<-dbLoad(db)
but it loads each file as its own object. You must explicitly save to disk using writeCorpus and reboot with a call to PCorpus each time. The PCorpus object simply provides a way to create a Corpus object on disk, not memory.
source share