当前位置: 首页>>代码示例>>C#>>正文


C# QueryInfo.AsDynamic方法代码示例

本文整理汇总了C#中QueryInfo.AsDynamic方法的典型用法代码示例。如果您正苦于以下问题:C# QueryInfo.AsDynamic方法的具体用法?C# QueryInfo.AsDynamic怎么用?C# QueryInfo.AsDynamic使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QueryInfo的用法示例。


在下文中一共展示了QueryInfo.AsDynamic方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetStatementTest

        public void GetStatementTest()
        {
            var inf = new QueryInfo();
            var input1 = "select * from A";
            (inf.AsDynamic().GetStatement(input1) as string[]).IsStructuralEqual(new[] { "select * from A" });

            var input2 = "select * from A;";
            (inf.AsDynamic().GetStatement(input2) as string[]).IsStructuralEqual(new[] { "select * from A" });

            var input3 = "select * from A; select * from B";
            (inf.AsDynamic().GetStatement(input3) as string[]).IsStructuralEqual(new[] { "select * from A", "select * from B" });

            var input4 = @"" + Environment.NewLine +
                      @" create trigger set_foo_primary for foo" + Environment.NewLine +
                      @"before insert" + Environment.NewLine +
                      @"" + Environment.NewLine +
                      @"as begin" + Environment.NewLine +
                      @"" + Environment.NewLine +
                      @"new.a = gen_id(gen_foo, 1);" + Environment.NewLine +
                      @"end" + Environment.NewLine +
                      @";" + Environment.NewLine +
                      @"  select* from A;" + Environment.NewLine +
                      @" create table V(a integer, b nvarchar(5))";
            (inf.AsDynamic().GetStatement(input4) as string[]).IsStructuralEqual(new[] {
                  @"create trigger set_foo_primary for foo" + Environment.NewLine +
                      @"before insert" + Environment.NewLine +
                      @"" + Environment.NewLine +
                      @"as begin" + Environment.NewLine +
                      @"" + Environment.NewLine +
                      @"new.a = gen_id(gen_foo, 1);" + Environment.NewLine +
                      @"end" ,
                "select* from A", "create table V(a integer, b nvarchar(5))" });
        }
开发者ID:degarashi0913,项目名称:FAManagementStudio,代码行数:33,代码来源:QueryInfoTests.cs

示例2: GetStatementTest2

        public void GetStatementTest2()
        {
            var inf = new QueryInfo();
            var input1 =
            @"--comment1
            create trigger set_foo_primary for foo
            before insert
            as begin
            new.a = gen_id(gen_foo, 1);
            end;

            --comment2
            select *
            from test
            where a = 1;

            --comment3
            create trigger set_foo_primary for foo2
            before insert
            as begin
            new.a = gen_id(gen_foo, 1);
            end;

            select * from fuga where hoho = 'eeee'
            --comment4";

            (inf.AsDynamic().GetStatement(input1) as string[]).IsStructuralEqual(new[] {
            @"create trigger set_foo_primary for foo
            before insert
            as begin
            new.a = gen_id(gen_foo, 1);
            end",
            @"select *
            from test
            where a = 1",
            @"create trigger set_foo_primary for foo2
            before insert
            as begin
            new.a = gen_id(gen_foo, 1);
            end",
            @"select * from fuga where hoho = 'eeee'"
            });
        }
开发者ID:degarashi0913,项目名称:FAManagementStudio,代码行数:43,代码来源:QueryInfoTests.cs

示例3: GetStatementTest3

        public void GetStatementTest3()
        {
            var inf = new QueryInfo();
            var input1 =
            @"--comment1
            select * from fuga where hoho = 'eeee' --comment2
            --comment3";

            (inf.AsDynamic().GetStatement(input1) as string[]).IsStructuralEqual(new[] {
            @"select * from fuga where hoho = 'eeee'"});
        }
开发者ID:degarashi0913,项目名称:FAManagementStudio,代码行数:11,代码来源:QueryInfoTests.cs

示例4: GetWordTest

        public void GetWordTest()
        {
            var inf = new QueryInfo();
            var input = @"select * from test t where t.Hoge='' and t.Fuga = '' ";
            //idx = 0, length = 0
            (inf.AsDynamic().GetWord(input, 0, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "select", "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''" });
            var input2 = @"select * from test t where t.Hoge='' and t.Fuga = ''";
            (inf.AsDynamic().GetWord(input2, 0, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "select", "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''" });
            var input3 = @"select * from test t where t.Hoge='' and t.Fuga = '';";
            (inf.AsDynamic().GetWord(input3, 0, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "select", "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''", ";" });

            //idx = any, length = 0
            (inf.AsDynamic().GetWord(input, 1, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "elect", "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''" });
            (inf.AsDynamic().GetWord(input, 7, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''" });
            (inf.AsDynamic().GetWord(input, input.Length, 0) as IEnumerable<string>).ToArray().IsStructuralEqual(new string[] { });

            //idx = any, length = any
            (inf.AsDynamic().GetWord(input, 1, 2) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "e" });
            (inf.AsDynamic().GetWord(input, 7, 28) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "*", "from", "test", "t", "where", "t" });
            (inf.AsDynamic().GetWord(input, 0, input.Length) as IEnumerable<string>).ToArray().IsStructuralEqual(new[] { "select", "*", "from", "test", "t", "where", "t.Hoge=''", "and", "t.Fuga", "=", "''" });
            (inf.AsDynamic().GetWord(input, input.Length, input.Length) as IEnumerable<string>).ToArray().IsStructuralEqual(new string[] { });
        }
开发者ID:degarashi0913,项目名称:FAManagementStudio,代码行数:22,代码来源:QueryInfoTests.cs

示例5: GetStatementTest4

        public void GetStatementTest4()
        {
            var inf = new QueryInfo();
            var input =
            @"--ExecuteSample1
            execute block
            as
            declare i int = 0;
            begin
              while (i < 128) do
              begin
            insert into AsciiTable values (:i, ascii_char(:i));
            i = i + 1;
              end end;

            --ExecuteSample2
            execute block (x double precision = ?, y double precision = ?)
            returns (gmean double precision)
            as
            begin
              gmean = sqrt(x*y);
              suspend;
            end;";
            (inf.AsDynamic().GetStatement(input) as string[]).IsStructuralEqual(new[] {
            @"execute block
            as
            declare i int = 0;
            begin
              while (i < 128) do
              begin
            insert into AsciiTable values (:i, ascii_char(:i));
            i = i + 1;
              end end",
            @"execute block (x double precision = ?, y double precision = ?)
            returns (gmean double precision)
            as
            begin
              gmean = sqrt(x*y);
              suspend;
            end"
            });
        }
开发者ID:degarashi0913,项目名称:FAManagementStudio,代码行数:42,代码来源:QueryInfoTests.cs


注:本文中的QueryInfo.AsDynamic方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。