示例#1
0
        public void ExecuteCreateIndexTest()
        {
            string dbfile = "taskaludb6.sqlite";

            CreateSQLiteDBFlie(dbfile);
            CreateTableTaskList(dbfile);

            string path = Path.GetTempPath() + "\\" + dbfile;

            Debug.Assert(SQLiteClass.ExecuteCreateIndex(path, "tasklist", "index_tasklist_name", "name"));
        }