Add relative and full path support for sqlite (#7700)
* Add relative and full path support for sqlite If the dialect is 'sqlite', then we parse host+pathname as a file path. sqlite documentation suggests that this is the right way to parse them: https://sqlite.org/c3ref/open.html#urifilenameexamples If the "storage" option is provided, then that wil take precedence. Examples: sqlite:subfolder/dbname.db => subfolder/dbname.db sqlite:/home/abs/dbname.db => /home/abs/dbname.db * Add dialect check for the unit tests * Update docs and changelog
Showing
with
42 additions
and
4 deletions
-
Please register or sign in to post a comment