New iPad + iPadOS 18 and Pythonista no longer finds my SQLite databases #45
nickevackerdag
started this conversation in
General
Replies: 1 comment 4 replies
-
|
May be Pythonista does not have permission to access the file. Where is the database file, and where is the Python script? You could narrow the problem down by trying to open the database file using Python's builtin "open" function to open the database file: print(open('example.db','rb').read(100).split(b'\x00',1)[0])I get the result: |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I just upgraded to a new iPad Air and iPadOS 18.5 in hope of boosting Pythonista run speed. It seems that Pythonista doesn’t work well with SQLite in iPadOS 18.5. No matter what I have tried, I get an ”sqlite3.OperationalError: unable to open database file” error message.
Does anyone know why this is and what I can do to get Pythonista to communicate with SQLite again? This is critical to my work.
Best regards, Niklas
Beta Was this translation helpful? Give feedback.
All reactions