Remove cache=shared

This commit is contained in:
Alexandre
2025-03-08 11:23:59 +01:00
committed by Nachtzuster
parent de57d009db
commit 50eb97834f
+1 -1
View File
@@ -54,7 +54,7 @@ st.markdown("""
@st.cache_resource()
def get_connection(path: str):
uri = f"file:{path}?mode=ro&cache=shared"
uri = f"file:{path}?mode=ro"
return sqlite3.connect(uri, uri=True, check_same_thread=False)