[chronojump] try/catch on ALTER TABLE DB 1.66: REExercise already has tareBeforeCapture
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] try/catch on ALTER TABLE DB 1.66: REExercise already has tareBeforeCapture
- Date: Thu, 19 Sep 2019 10:47:31 +0000 (UTC)
commit ffa87047da4ab42a316299cc7eb683935f3037a3
Author: Xavier de Blas <xaviblas gmail com>
Date: Thu Sep 19 12:46:31 2019 +0200
try/catch on ALTER TABLE DB 1.66: REExercise already has tareBeforeCapture
src/sqlite/main.cs | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
---
diff --git a/src/sqlite/main.cs b/src/sqlite/main.cs
index b1babd80..d7ae501a 100644
--- a/src/sqlite/main.cs
+++ b/src/sqlite/main.cs
@@ -2354,11 +2354,17 @@ class Sqlite
currentVersion = updateVersion("1.58");
}
+
+ //bool createdForceSensorExerciseWith_tareBeforeCapture = false;
if(currentVersion == "1.58")
{
LogB.SQL("Created ForceSensorExercise");
- SqliteForceSensorExercise.createTable();
+ SqliteForceSensorExercise.createTable(); //now this createTable has the
tareBeforeCapture column
+ //do not use this because if update fails and is done on different Chronojump
executions,
+ //we will arrive to 1.66 having this as false:
+ //createdForceSensorExerciseWith_tareBeforeCapture
+ //so better use a try/catch on ALTER TABLE
currentVersion = updateVersion("1.59");
}
@@ -2421,7 +2427,15 @@ class Sqlite
}
if(currentVersion == "1.66")
{
- executeSQL("ALTER TABLE " + Constants.ForceSensorExerciseTable + " ADD COLUMN
tareBeforeCapture INT NOT NULL DEFAULT 0;");
+ LogB.SQL("Doing alter table ...");
+ try {
+ executeSQL("ALTER TABLE " + Constants.ForceSensorExerciseTable + "
ADD COLUMN tareBeforeCapture INT NOT NULL DEFAULT 0;");
+ } catch {
+ LogB.SQL("Catched. tareBeforeCapture already exists.");
+
+ }
+ LogB.SQL("Done!");
+
currentVersion = updateVersion("1.67");
}
if(currentVersion == "1.67")
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]