Esempio n. 1
0
        static void SearchCountDemo(string name, string type, string type_desc)
        {
            var sql = FQL.Format(SqlServerFQL.Instance, "select @totle = count(1) from sys.objects").AsBuilder();

            if (name != null)
            {
                sql.And("name like '%' + {0} + '%'", name);
            }
            if (type != null)
            {
                sql.And("type = {0}", type);
            }
            ;
            if (type_desc != null)
            {
                sql.And("type_desc = {0}", type_desc);
            }

            using (var conn = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True"))
                using (var cmd = conn.CreateCommand())
                {
                    cmd.CommandText = sql.CommandText;              //设置CommandText
                    cmd.Parameters.AddRange(sql.DbParameters);      //设定Parameters
                    var p = new SqlParameter("totle", 0)
                    {
                        Direction = ParameterDirection.Output
                    };
                    cmd.Parameters.Add(p);
                    conn.Open();
                    cmd.ExecuteNonQuery();
                    Console.WriteLine(p.Value);
                }
        }
Esempio n. 2
0
        public void 一般结构_返回参数()
        {
            var obj = new User2 {
                ID = 1
            };

            try
            {
                var result = FQL.Format(SqlServerFQL.Instance, "select * from users where id = {0:out id}", obj);
                Assert.Fail("测试失败");
            }
            catch (Exception)
            {
            }
        }
Esempio n. 3
0
        public void 匿名类型_返回参数()
        {
            var obj    = new { id = 1 };
            var result = FQL.Format(SqlServerFQL.Instance, "select * from users where id = {0:out id}", obj);

            result.Assert("select * from users where id = @p0_id");
            Assert.IsNull(result.DbParameters[0].Value);
            result.DbParameters[0].Value = 10;
            result.ImportOutParameter();
            Assert.AreEqual(10, obj.id);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where id = {0:ref id}", obj);
            result.Assert("select * from users where id = @p0_id");
            Assert.AreEqual(10, result.DbParameters[0].Value);
            result.DbParameters[0].Value = 100;
            result.ImportOutParameter();
            Assert.AreEqual(100, obj.id);
        }
Esempio n. 4
0
        static void OutDemo()
        {
            string sql = "select {0:out count} = count(1) from sys.objects where name like '%' + {0:name} + '%'";
            var    arg = new { name = "sys", count = 0 };
            var    r   = FQL.Format(SqlServerFQL.Instance, sql, arg);

            using (var conn = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True"))
                using (var cmd = conn.CreateCommand())
                {
                    cmd.CommandText = r.CommandText;
                    cmd.Parameters.AddRange(r.DbParameters);
                    conn.Open();
                    cmd.ExecuteNonQuery();
                    r.ImportOutParameter();
                    Console.WriteLine(arg.count);
                }
        }
Esempio n. 5
0
        static int ExecuteNonQuery(string sql, object[] args)
        {
            var fql = FQL.Format(SqlServerFQL.Instance, sql, args);

            using (var conn = new SqlConnection("Data Source=.;Initial Catalog=Test;Integrated Security=True"))
                using (var cmd = conn.CreateCommand())
                {
                    cmd.CommandText = fql.CommandText;              //设置CommandText
                    cmd.Parameters.AddRange(fql.DbParameters);      //设定Parameters
                    var p = new SqlParameter("totle", 0)
                    {
                        Direction = ParameterDirection.Output
                    };
                    cmd.Parameters.Add(p);
                    conn.Open();
                    return(cmd.ExecuteNonQuery());
                }
        }
Esempio n. 6
0
        public void 一个参数使用多次()
        {
            IFQLResult result;

            result = FQL.Format(SqlServerFQL.Instance, "select {0} + {1} from users where  id = {0} and name = {1}", 1, "blqw");
            result.Assert("select @p0 + @p1 from users where  id = @p0 and name = @p1");
            Assert.AreEqual(1, result.DbParameters[0].Value);
            Assert.AreEqual("blqw", result.DbParameters[1].Value);


            result = FQL.Format(SqlServerFQL.Instance, @"select * from users where id in ({0});
select * from roles where user_id in ({0});", new[] { 1, 2, 3, 4, 5 });
            result.Assert(@"select * from users where id in (@p0_1,@p0_2,@p0_3,@p0_4,@p0_5);
select * from roles where user_id in (@p0_1,@p0_2,@p0_3,@p0_4,@p0_5);");
            Assert.AreEqual(1, result.DbParameters[0].Value);
            Assert.AreEqual(2, result.DbParameters[1].Value);
            Assert.AreEqual(3, result.DbParameters[2].Value);
            Assert.AreEqual(4, result.DbParameters[3].Value);
            Assert.AreEqual(5, result.DbParameters[4].Value);
        }
Esempio n. 7
0
        public void 键值对_返回参数()
        {
            var dict = new Dictionary <string, object>();

            dict.Add("id", 1);
            dict.Add("name", "");
            var result = FQL.Format(SqlServerFQL.Instance, "select {0:out name} = name from users where id = {0:id}", dict);

            result.Assert("select @p0_name = name from users where id = @p0_id");
            result.DbParameters[0].Value = "blqw";
            result.ImportOutParameter();
            Assert.AreEqual("blqw", dict["name"]);

            dict["name"] = typeof(string);
            result       = FQL.Format(SqlServerFQL.Instance, "select {0:out name} = name from users where id = {0:id}", dict);
            result.Assert("select @p0_name = name from users where id = @p0_id");
            result.DbParameters[0].Value = "blqw";
            result.ImportOutParameter();
            Assert.AreEqual("blqw", dict["name"]);

            dict["name"] = new SqlParameter {
                ParameterName = "name",
                SqlDbType     = System.Data.SqlDbType.NVarChar,
                Direction     = System.Data.ParameterDirection.Output,
            };
            result = FQL.Format(SqlServerFQL.Instance, "select {0:name} = name from users where id = {0:id}", dict);
            result.Assert("select @name = name from users where id = @p0_id");
            result.DbParameters[0].Value = "blqw";
            Assert.AreEqual("blqw", ((SqlParameter)dict["name"]).Value);

            dict["name"] = new SqlParameter {
                ParameterName = "name",
                SqlDbType     = System.Data.SqlDbType.NVarChar
            };
            result = FQL.Format(SqlServerFQL.Instance, "select {0:out name} = name from users where id = {0:id}", dict);
            result.Assert("select @name = name from users where id = @p0_id");
            result.DbParameters[0].Value = "blqw";
            Assert.AreEqual("blqw", ((SqlParameter)dict["name"]).Value);
        }
Esempio n. 8
0
        public void 多余的参数()
        {
            var p = new SqlParameter {
                ParameterName = "name",
                SqlDbType     = System.Data.SqlDbType.NVarChar,
                Direction     = System.Data.ParameterDirection.Output,
            };
            var result = FQL.Format(SqlServerFQL.Instance, "select name from users where id = {0}", 1, p);

            result.Assert("select name from users where id = @p0");
            Assert.AreEqual(1, result.DbParameters[0].Value);
            Assert.AreEqual(2, result.DbParameters.Length);

            //换位置
            result = FQL.Format(SqlServerFQL.Instance, "select name from users where id = {1}", p, 1);
            result.Assert("select name from users where id = @p1");
            Assert.AreEqual(1, result.DbParameters[0].Value);
            Assert.AreEqual(2, result.DbParameters.Length);


            result = FQL.Format(SqlServerFQL.Instance, "select name from users where id = {0} or id = {1}", p, 1);
            result.Assert("select name from users where id = @name or id = @p1");
            Assert.AreEqual(p, result.DbParameters[0]);
        }
Esempio n. 9
0
        public void 各种类型_输入参数()
        {
            int  i = int.MaxValue;                              //系统类型
            long?l = null;                                      //可空值类型

            int[] arr  = { 1, 2, 3, 4, 5 };                     //数组
            var   list = new List <int> {
                6, 7, 8, 9, 10
            };                                                                                 //集合
            string s    = "blqw1";                                                             //字符串
            var    obj  = new { id = 100, name = "blqw", IDs = new[] { 11, 12, 13, 14, 15 } }; //匿名类型
            var    dict = new Dictionary <string, object>();                                   //键值对

            dict.Add("id", 101);
            dict.Add("name", "blqw2");
            dict.Add("ids", new[] { 16, 17, 18, 19, 20 });
            var user1 = new User {
                ID = 102, Name = "blqw3", IDs = new ArrayList {
                    21, 22, 23, 24, 25
                }
            };                                                                                                 //自定义 引用类型
            var user2 = new User2 {
                ID = 103, Name = "blqw4", IDs = new[] { 31, 32, 33, 34, 35 }
            };                                                                                         //自定义 值类型
            var p = new System.Data.SqlClient.SqlParameter("name", System.Data.SqlDbType.NVarChar);


            IFQLResult result;

            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0} and name = {1} and 1=1", i, s);
            result.Assert("select * from users where  id = @p0 and name = @p1 and 1=1");
            Assert.AreEqual(i, result.DbParameters[0].Value);
            Assert.AreEqual(s, result.DbParameters[1].Value);

            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0} and name = {1}", i, p);
            result.Assert("select * from users where  id = @p0 and name = @name");
            Assert.AreEqual(i, result.DbParameters[0].Value);
            Assert.AreEqual(p, result.DbParameters[1]);

            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0} and name = {1}", l, s);
            result.Assert("select * from users where  id = NULL and name = @p1");
            Assert.AreEqual(s, result.DbParameters[0].Value);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id in ({0}) and name = {1}", arr, s);
            result.Assert("select * from users where  id in (@p0_1,@p0_2,@p0_3,@p0_4,@p0_5) and name = @p1");
            Assert.AreEqual(arr[0], result.DbParameters[0].Value);
            Assert.AreEqual(arr[1], result.DbParameters[1].Value);
            Assert.AreEqual(arr[2], result.DbParameters[2].Value);
            Assert.AreEqual(arr[3], result.DbParameters[3].Value);
            Assert.AreEqual(arr[4], result.DbParameters[4].Value);
            Assert.AreEqual(s, result.DbParameters[5].Value);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id in ({0},{1:id}) and name = {1:name}", list, obj);
            result.Assert("select * from users where  id in (@p0_1,@p0_2,@p0_3,@p0_4,@p0_5,@p1_id) and name = @p1_name");
            Assert.AreEqual(list[0], result.DbParameters[0].Value);
            Assert.AreEqual(list[1], result.DbParameters[1].Value);
            Assert.AreEqual(list[2], result.DbParameters[2].Value);
            Assert.AreEqual(list[3], result.DbParameters[3].Value);
            Assert.AreEqual(list[4], result.DbParameters[4].Value);
            Assert.AreEqual(obj.id, result.DbParameters[5].Value);
            Assert.AreEqual(obj.name, result.DbParameters[6].Value);

            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0:id} and name = {0:name}", obj);
            result.Assert("select * from users where  id = @p0_id and name = @p0_name");
            Assert.AreEqual(obj.id, result.DbParameters[0].Value);
            Assert.AreEqual(obj.name, result.DbParameters[1].Value);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0:id} and name = {0:name}", dict);
            result.Assert("select * from users where  id = @p0_id and name = @p0_name");
            Assert.AreEqual(dict["id"], result.DbParameters[0].Value);
            Assert.AreEqual(dict["name"], result.DbParameters[1].Value);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0:id} and name = {0:name}", user1);
            result.Assert("select * from users where  id = @p0_id and name = @p0_name");
            Assert.AreEqual(user1.ID, result.DbParameters[0].Value);
            Assert.AreEqual(user1.Name, result.DbParameters[1].Value);
            result = FQL.Format(SqlServerFQL.Instance, "select * from users where  id = {0:id} and name = {0:name}", user2);
            result.Assert("select * from users where  id = @p0_id and name = @p0_name");
            Assert.AreEqual(user2.ID, result.DbParameters[0].Value);
            Assert.AreEqual(user2.Name, result.DbParameters[1].Value);


            result = FQL.Format(SqlServerFQL.Instance, "select * from users where id in ({0:ids},{0:id},{1}) and name = {0:name}", obj, 1);
            result.Assert("select * from users where id in (@p0_ids_1,@p0_ids_2,@p0_ids_3,@p0_ids_4,@p0_ids_5,@p0_id,@p1) and name = @p0_name");
            Assert.AreEqual(obj.IDs[0], result.DbParameters[0].Value);
            Assert.AreEqual(obj.IDs[1], result.DbParameters[1].Value);
            Assert.AreEqual(obj.IDs[2], result.DbParameters[2].Value);
            Assert.AreEqual(obj.IDs[3], result.DbParameters[3].Value);
            Assert.AreEqual(obj.IDs[4], result.DbParameters[4].Value);
            Assert.AreEqual(obj.id, result.DbParameters[5].Value);
            Assert.AreEqual(1, result.DbParameters[6].Value);
            Assert.AreEqual(obj.name, result.DbParameters[7].Value);
        }
Esempio n. 10
0
        public void 测试异常()
        {
            try
            {
                FQL.Format(SqlServerFQL.Instance, null, 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "{1}", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "{x}", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "..{.", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "..{0:{}.", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "..{0::}.", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "...{x:...", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "...{0:name}:...", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            try
            {
                FQL.Format(SqlServerFQL.Instance, "...{0:name}:...", 1);
                Assert.Fail("测试失败");
            }
            catch (AssertFailedException) { throw; }
            catch { }

            FQL.Format(SqlServerFQL.Instance, "..{{.", 1);
            FQL.Format(SqlServerFQL.Instance, "..}}.", 1);
            FQL.Format(SqlServerFQL.Instance, "..{0:}.", 1);
            FQL.Format(SqlServerFQL.Instance, "..}.", 1);
            FQL.Format(SqlServerFQL.Instance, "..", 1);
            FQL.Format(SqlServerFQL.Instance, "....", null);
            FQL.Format(null, "{0}", 1);
        }