/**
  * Sets the database to be opened in read-only mode
  *
  * @param readOnly True to enable; false to disable.
  * @see <a
  *     href="http://www.sqlite.org/c3ref/c_open_autoproxy.html">http://www.sqlite.org/c3ref/c_open_autoproxy.html</a>
  */
 public void setReadOnly(boolean readOnly) {
   config.setReadOnly(readOnly);
 }