/**
  * Set the temp_store type which is used to determine where temporary tables and indices are
  * stored.
  *
  * @param storeType One of "DEFAULT", "FILE", "MEMORY"
  * @see <a
  *     href="http://www.sqlite.org/pragma.html#pragma_temp_store">http://www.sqlite.org/pragma.html#pragma_temp_store</a>
  */
 public void setTempStore(String storeType) {
   config.setTempStore(TempStore.valueOf(storeType));
 }