Throws an sqlite exception "SQLite Error 1: 'all VALUES must have the same number of terms'" because the dot gets replaced by a comma and sqlite sees it as two separate values.
Quick and dirty fix is to add
Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
to the beginning of Main.
Throws an sqlite exception "SQLite Error 1: 'all VALUES must have the same number of terms'" because the dot gets replaced by a comma and sqlite sees it as two separate values.
Quick and dirty fix is to add
Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture;
to the beginning of Main.