/**
  * Sets the limit of the size of rollback-journal and WAL files left in the file-system after
  * transactions or checkpoints.
  *
  * @param limit The default journal size limit is -1 (no limit).
  * @see <a href="http://www.sqlite.org/pragma.html#pragma_journal_size_limit">
  *     http://www.sqlite.org/pragma.html#pragma_journal_size_limit</a>
  */
 public void setJournalSizeLimit(int limit) {
   config.setJounalSizeLimit(limit);
 }