public void UpdateOverwievAnswer(DBOverviewQuestionAnswer item)
        {
            SQLiteConnection connection = GetConnection();

            connection.CreateTable <DBOverviewQuestionAnswer>();
            connection.Update(item);
        }
        public void AddOverwievAnswer(DBOverviewQuestionAnswer item)
        {
            bool flag_added = true;

            SQLiteConnection connection = GetConnection();

            connection.CreateTable <DBOverviewQuestionAnswer>();
            var table = connection.Table <DBOverviewQuestionAnswer>();

            foreach (var pp in table)
            {
                //                Console.WriteLine (pp.question + ", " + pp.session);
            }

            if (flag_added)
            {
                connection.Insert(item);
            }
        }