piskvorky / sqlitedict

Persistent dict, backed by sqlite3 and pickle, multithread-safe.
Apache License 2.0
1.16k stars 130 forks source link

Do not create tables when in read-only mode #128

Closed hholst80 closed 3 years ago

hholst80 commented 3 years ago

If db was opened with flag='r', check if tablename exists, if not raise RuntimeError.

Closes #127

hholst80 commented 3 years ago

I included a basic test.

mpenkov commented 3 years ago

Good work @hholst80 ! Thank you for your contribution.