Add a SQLite implementation of the jeff.Storage interface
Thanks for the notes! I've been sick this week, so I'm a little behind, but I'll hopefully have time to follow up this weekend or next.
In addition to the inline comments, could you also add a test to this file?
Sure, I added tests in 7d09c7a.
Perhaps also an example for the documentation?
I'm not seeing where this would go, as it doesn't look like the README has examples for any of the stores. Is there a place you have in mind?
Finally, do you think it's possible to use standard SQL as much as possible and make this work for any *sql.DB object passed in, or is that unrealistic?
I don't think this would be practical. MySQL/MSSQL/Postgres all have different semantics for prepared statements, so I don't think the syntax for SQLite would abstract away to the other DB types.
@abraithwaite - Is this PR still under consideration?