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
Support mkdir -p behavior when DB file does not exist
Currently, if you supply a DB path that includes directories which
do not exist, sqlite3 will not attempt to create them and the open
will crash.
This adds a quick attempt to `mkdir` on the db path to ensure all intermediary
directories exist before attempting to create the DB file for cases that
`SQLITE_OPEN_CREATE` flag is enabled and would expect the file to be
created when non-existant
0 commit comments