/**
  * Sets the mode that will be used to start transactions for this database.
  *
  * @param transactionMode One of DEFFERED, IMMEDIATE or EXCLUSIVE.
  * @see <a
  *     href="http://www.sqlite.org/lang_transaction.html">http://www.sqlite.org/lang_transaction.html</a>
  */
 public void setTransactionMode(String transactionMode) {
   config.setTransactionMode(transactionMode);
 }