ZCML for Storm under Zope3
This was a rookie error, but if you're trying to define the URI to your Sqlite database as an absolute path, don't do this:
<store name="db" uri="sqlite:///var/tmp/test.db"/>
Do this:
<store name="db" uri="sqlite:////var/tmp/ondemand.db"/>
You need the four (4) forward slashes, the two at the beginning separate the schema name from the rest of the URI, the second one separates the host name, username, and password information, and the third one the actual database name (in this case, a path to our sqlite file).
Hope someone else finds this helpful.
Comments [0]