Initialize sql_write before sql_read so file can be created.
The read only handle doesn't want to create the db file when it does not yet exist.
This commit is contained in:
parent
97e14b9917
commit
57d311569f
1 changed files with 2 additions and 2 deletions
|
@ -1587,8 +1587,8 @@ class PhotoDB(
|
||||||
def _init_sql(self, create, skip_version_check):
|
def _init_sql(self, create, skip_version_check):
|
||||||
if self.ephemeral:
|
if self.ephemeral:
|
||||||
existing_database = False
|
existing_database = False
|
||||||
self.sql_read = self._make_sqlite_read_connection(':memory:')
|
|
||||||
self.sql_write = self._make_sqlite_write_connection(':memory:')
|
self.sql_write = self._make_sqlite_write_connection(':memory:')
|
||||||
|
self.sql_read = self._make_sqlite_read_connection(':memory:')
|
||||||
self._first_time_setup()
|
self._first_time_setup()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -1600,8 +1600,8 @@ class PhotoDB(
|
||||||
raise FileNotFoundError(msg)
|
raise FileNotFoundError(msg)
|
||||||
|
|
||||||
self.data_directory.makedirs(exist_ok=True)
|
self.data_directory.makedirs(exist_ok=True)
|
||||||
self.sql_read = self._make_sqlite_read_connection(self.database_filepath)
|
|
||||||
self.sql_write = self._make_sqlite_write_connection(self.database_filepath)
|
self.sql_write = self._make_sqlite_write_connection(self.database_filepath)
|
||||||
|
self.sql_read = self._make_sqlite_read_connection(self.database_filepath)
|
||||||
|
|
||||||
if existing_database:
|
if existing_database:
|
||||||
if not skip_version_check:
|
if not skip_version_check:
|
||||||
|
|
Loading…
Reference in a new issue