This commit is contained in:
Kapil Yedidi 2021-11-16 15:11:55 -08:00
parent 5f93c3748a
commit eb06d95559

View File

@ -97,7 +97,7 @@ class Database(object):
if not params: if not params:
return 'sqlite:///' + path return 'sqlite:///' + path
params['uri'] = 'true' params['uri'] = 'true'
return 'sqlite:///' + path + urlencode(params) return 'sqlite:///file:' + path + '?' + urlencode(params)
@property @property
def executable(self): def executable(self):