<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
> anyway, that's why SQLiteOpenHelper requires a db version, and an<br>
> implementation of "onUpgrade(SQLiteDatabase db, int oldVersion, int<br>
> newVersion)".<br>
><br>
> I'll take a look to update the DB without losing anything :)<br>
<br>
</div>Can't we just trash it?<br></blockquote><div><br>The only thing that changed in the DB is a column name (from "path" to "location").<br>To safely upgrade the DB and keep the date, the only option is to rename the table, create the new one, copy data, and remove the old table (sqllite doesn't allow column renaming).<br>
<br>I think it's too much effort for almost nothing, we should just keep the old name.<br></div></div>