chrisstoyles’s posterous

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]

Went and saw a talk by Phillip Adams last night

I went and saw a talk called "Things that go bump in the night" by Phillip Adams at UWA last night. It was great!

Comments [0]

Interview with Steven Gough, Co-Founder and CEO Mig33

A great interview with Steven Gough over at the valley beat.

Comments [0]