Thank you guys.... problem solved modifing a previous SELECT command as follows:
using (SqliteConnection db = new SqliteConnection("Filename=" + CommonVars.filePath))
{
using (SqliteCommand SQLcmd = new SqliteCommand())
{
SQLcmd.Connection = db;
SQLcmd.CommandText = "SELECT * FROM Config";
db.Open();
using (SqliteDataReader dr = SQLcmd.ExecuteReader())
{