簡易データベース
Trac は、sqlite 使用しています
TRAC のアップグレードする際、TRAC データベースエラーが発生する場合があります。 これはSQLite version 2.x から 3.x アップしたため、古いTRAC データベース読めなくなる。
対策
We've finally tracked the problem to SQLite version 2.x vs 3.x On Fedora Core 4, Trac uses SQLite 3.x although the trac.db database in conf directory is in version 2.x format. The solution is to manually upgrade all the Trac environment databases to version 3.x: # mv trac.db trac2.db # sqlite trac2.db .dump | sqlite3 trac.db
Last-modified: 2010-01-28 (Thu) 14:55:32 (222d)