示例#1
0
        public void CheckTableTest()
        {
            string dir  = Path.GetTempPath();
            string path = dir + "\\taskaludb3.sqlite";

            try
            {
                File.Delete(path);
            }
            catch (Exception)
            {
                // preperation
            }
            var result = SQLiteClass.TouchDB(dir, path);

            Debug.Assert(SQLiteClass.CheckTable(path, "tasklist"));
        }