/**
  * Set the value of the legacy_file_format flag. When this flag is on, new databases are created
  * in a file format that is readable and writable by all versions of SQLite going back to 3.0.0.
  * When the flag is off, new databases are created using the latest file format which might not be
  * readable or writable by versions of SQLite prior to 3.3.0.
  *
  * @param use True to turn on; false to turn off.
  * @see <a
  *     href="http://www.sqlite.org/pragma.html#pragma_legacy_file_format">http://www.sqlite.org/pragma.html#pragma_legacy_file_format</a>
  */
 public void setLegacyFileFormat(boolean use) {
   config.useLegacyFileFormat(use);
 }