Пример #1
0
        public void InsertTest()
        {
            CommaParser parser = new CommaParser();

            for (int i = 0; i < 1400; i++)
            {
                parser.Parser($"insert {i} {i+"a"} {i+"b"}");
            }
            parser.Parser("save");
            parser.Parser("exit");
        }
Пример #2
0
        public void InsertTest2()
        {
            string      filePath = Path.Combine(Environment.CurrentDirectory, "Mysqlite.data");
            UserTable   table    = UserTable.Open(filePath);
            CommaParser parser   = new CommaParser();

            parser.Table = table;
            for (int i = 0; i < 14; i++)
            {
                parser.Parser($"insert {i} {i + "a"} {i + "b"}");
            }
            parser.Parser("save");
            parser.Parser("exit");
        }