You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting error when accessing OPFS SQLite database using storage manager API with nativeFS in Firefox Mozilla, same is working without any issues in Chrome/Edge in windows
import sqlite3
conn = sqlite3.connect('/mnt/nativefs/Default/MT_4.sqlite3')
for row in conn.execute("SELECT * FROM sqlite_master"):
print(row)
conn.close()
Expected behavior
It should run error free as it did in Chrome/Edge.
Environment
Pyodide Version : 0.26.2
Browser version : Firefox 133.0b4 (64-bit)
OS: Windows 11
The text was updated successfully, but these errors were encountered:
🐛 Bug
We are getting error when accessing OPFS SQLite database using storage manager API with nativeFS in Firefox Mozilla, same is working without any issues in Chrome/Edge in windows
To Reproduce
JS Code:
Python Code:
Expected behavior
It should run error free as it did in Chrome/Edge.
Environment
The text was updated successfully, but these errors were encountered: