From: Nick M. <nmu...@lo...> - 2008-02-04 16:37:09
|
> By this error I can guess you are using SQLite as the backend. I don't > know a way to fix or overcome the problem with SQLite. You can "fix" the broken database by using sqlite's `.output FILENAME` followed by `.dump` to output all the data, then read it back into a blank sqlite database with `sqlite newdatabase.sqlite < FILENAME`. These sort of problems are why I started just using a test psql database for developing with, rather than sqlite :) |