thoth-dbmanager 0.4.10__py3-none-any.whl → 0.4.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,8 +80,27 @@ class SQLitePlugin(DbPlugin):
80
80
  # Create database path from name and root path
81
81
  db_root = Path(self.db_root_path)
82
82
  db_dir = db_root / f"{self.db_mode}_databases" / database_name
83
- db_dir.mkdir(parents=True, exist_ok=True)
84
- database_path = str(db_dir / f"{database_name}.db")
83
+
84
+ # Check for existing database files with different extensions
85
+ potential_files = [
86
+ db_dir / f"{database_name}.sqlite",
87
+ db_dir / f"{database_name}.db",
88
+ db_dir / f"{database_name}.sqlite3"
89
+ ]
90
+
91
+ database_path = None
92
+ for potential_file in potential_files:
93
+ if potential_file.exists():
94
+ database_path = str(potential_file)
95
+ logger.info(f"Found existing database file: {database_path}")
96
+ break
97
+
98
+ # If no existing file found, create directory and use .sqlite extension
99
+ if not database_path:
100
+ db_dir.mkdir(parents=True, exist_ok=True)
101
+ database_path = str(db_dir / f"{database_name}.sqlite")
102
+ logger.info(f"No existing database found, will use: {database_path}")
103
+
85
104
  kwargs['database_path'] = database_path
86
105
 
87
106
  # Set database path for adapter - ensure we use the provided database_path
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thoth_dbmanager
3
- Version: 0.4.10
3
+ Version: 0.4.11
4
4
  Summary: A Python library for managing SQL databases with support for multiple database types, LSH-based similarity search, and a modern plugin architecture.
5
5
  Author-email: Marco Pancotti <mp@tylconsulting.it>
6
6
  Project-URL: Homepage, https://github.com/mptyl/thoth_dbmanager
@@ -29,11 +29,11 @@ thoth_dbmanager/plugins/mariadb.py,sha256=ElYa4Rexwrofcjcs0UQKan8fZpbU6-n9zghYR9
29
29
  thoth_dbmanager/plugins/mysql.py,sha256=mbDsIDV2H_BWYANU4JHMsUkxLQICuGtjKTTPbig2Ngs,16546
30
30
  thoth_dbmanager/plugins/oracle.py,sha256=k4Yxvz5MdsH3Sfty9lxbhr8igSnHvGbGujz3bLpNcHo,5230
31
31
  thoth_dbmanager/plugins/postgresql.py,sha256=pI1W9oHpQty8tHMoEDcsOT-Msv6S4aoFcArOGFxLR7Q,5518
32
- thoth_dbmanager/plugins/sqlite.py,sha256=0rGbmY4YTmFs426Dl6smAr6ATQj5jW86re5G1mWgocY,6632
32
+ thoth_dbmanager/plugins/sqlite.py,sha256=BVj6OXpihSNlkEXYo_xwA53ulQYR8WjU_JBXdJJhwqA,7464
33
33
  thoth_dbmanager/plugins/sqlserver.py,sha256=mMb3F5FmSWV02FZwj-Ult-2TjuyeVA4Fl1iME1dbgLU,5289
34
34
  thoth_dbmanager/plugins/supabase.py,sha256=mWlaGAdpywx4-pU4Ffpmn24ze8sg0sM5kc6bFDoeYRg,8645
35
- thoth_dbmanager-0.4.10.dist-info/licenses/LICENSE,sha256=81-BOzGgwtY1XdYfkwMQB87AkOGXI9OMq0kjNcZA4UE,1071
36
- thoth_dbmanager-0.4.10.dist-info/METADATA,sha256=7dpnzyb1Gem7JrA5N_aEx97-vC3c5bLXYa1N1fIWWoA,12247
37
- thoth_dbmanager-0.4.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
38
- thoth_dbmanager-0.4.10.dist-info/top_level.txt,sha256=b9ttxm9RUc0KUCASEKRx6FqoREYJ1-KZWSpNuaM0uQ4,16
39
- thoth_dbmanager-0.4.10.dist-info/RECORD,,
35
+ thoth_dbmanager-0.4.11.dist-info/licenses/LICENSE,sha256=81-BOzGgwtY1XdYfkwMQB87AkOGXI9OMq0kjNcZA4UE,1071
36
+ thoth_dbmanager-0.4.11.dist-info/METADATA,sha256=wJLpWBVuZ8bjJXjlwsL64CLmarCfl_HWKxHyUbjmCXs,12247
37
+ thoth_dbmanager-0.4.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
38
+ thoth_dbmanager-0.4.11.dist-info/top_level.txt,sha256=b9ttxm9RUc0KUCASEKRx6FqoREYJ1-KZWSpNuaM0uQ4,16
39
+ thoth_dbmanager-0.4.11.dist-info/RECORD,,