当前位置:七道奇文章资讯数据防范MSSQL防范
日期:2011-01-25 23:11:00  来源:本站整理

<b>SQL强范例查询的实现</b>[MSSQL防范]

赞助商链接



  本文“<b>SQL强范例查询的实现</b>[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

SQL强范例查询的很多实现办法都不够直观,下面的实现办法是一个直观的SQL强范例查询,供您参考,但愿对您有所启迪.

这里只是个考证设法的代码,所以没有作任何容错和扩大性处理.也不要提出OO不OO的见解,毫无疑义.

所假想的是一个查询 Select [Columnlist] From [TableName] Where [Exp] Order By [PK] 普通来说是这个格局,我们最难表述的其实就是[Exp]这个部份.前面的都对比格局化,所以可以通过嵌套办法来实现还是对比符合的,但是[Exp]这个部份用诸如AND(Exp1,Exp2)这模样的情势不能很直观的看出表达式的意义,所以通太重载操作符的方法来实现,这里我们假定在Entity的Class里有static成员来存储列的名称.那么

Exp Rs=new Exp(User.ID) == 2 & new Exp(User.State) > 0 ;

这模样的格局就可以表达Where背面的 ID=2 AND State>0 这个表达式

具体代码以下

  1.  class Program  
  2.   2    {  
  3.   3        static void Main(string[] args)  
  4.   4        {  
  5.   5  
  6.   6            Exp rs = new Exp("C1") == 25 & new Exp("C2") > 3 | new Exp("C3") < 5 ^ new Exp("C4") % "hehe";  
  7.   7            Console.WriteLine(rs.Sql);  
  8.   8            foreach (SqlParameter sp in rs.Sps)  
  9.   9            {  
  10.  10                Console.WriteLine(sp.ParameterName);  
  11.  11            }  
  12.  12            Console.Read();  
  13.  13        }  
  14.  14    }  
  15.  15  
  16.  16    class Exp  
  17.  17    {  
  18.  18        private string _Sql;  
  19.  19  
  20.  20        private List<SqlParameter> sps;  
  21.  21  
  22.  22        public List<SqlParameter> Sps  
  23.  23        {  
  24.  24            get { return sps; }  
  25.  25            set { sps = value; }  
  26.  26        }  
  27.  27  
  28.  28        private SqlParameter sp;  
  29.  29  
  30.  30        public string Sql  
  31.  31        {  
  32.  32            get { return _Sql; }  
  33.  33        }  
  34.  34  
  35.  35        private Exp()  
  36.  36        {  
  37.  37            sps = new List<SqlParameter>();  
  38.  38        }  
  39.  39  
  40.  40        public Exp(string CollumnName)  
  41.  41        {  
  42.  42            _Sql = CollumnName;  
  43.  43        }  
  44.  44  
  45.  45        public static Exp operator ==(Exp Left, Object Value)  
  46.  46        {  
  47.  47            Exp Next = new Exp();  
  48.  48            Next.sp = new SqlParameter(Left._Sql, Value);  
  49.  49            Next.sps.Add(Next.sp);  
  50.  50            Next._Sql = Left._Sql + " = @" + Left.Sql;  
  51.  51            return Next;  
  52.  52        }  
  53.  53        public static Exp operator !=(Exp Left, Object Value)  
  54.  54        {  
  55.  55            Exp Next = new Exp();  
  56.  56            Next.sp = new SqlParameter(Left._Sql, Value);  
  57.  57            Next.sps.Add(Next.sp);  
  58.  58            Next._Sql = Left._Sql + " <> @" + Left._Sql;  
  59.  59            return Next;  
  60.  60        }  
  61.  61  
  62.  62        public static Exp operator <(Exp Left, Object Value)  
  63.  63        {  
  64.  64            Exp Next = new Exp();  
  65.  65            Next.sp = new SqlParameter(Left._Sql, Value);  
  66.  66            Next.sps.Add(Next.sp);  
  67.  67            Next._Sql = Left._Sql + " < @" + Left._Sql;  
  68.  68            return Next;  
  69.  69        }  
  70.  70        public static Exp operator >(Exp Left, Object Value)  
  71.  71        {  
  72.  72            Exp Next = new Exp();  
  73.  73            Next.sp = new SqlParameter(Left._Sql, Value);  
  74.  74            Next.sps.Add(Next.sp);  
  75.  75            Next._Sql = Left._Sql + " > @" + Left._Sql;  
  76.  76            return Next;  
  77.  77        }  
  78.  78  
  79.  79        public static Exp operator %(Exp Left, Object Value)  
  80.  80        {  
  81.  81            Exp Next = new Exp();  
  82.  82            Next.sp = new SqlParameter(Left._Sql, Value);  
  83.  83            Next.sps.Add(Next.sp);  
  84.  84            Next._Sql = Left._Sql + " Like @" + Left._Sql;  
  85.  85            return Next;  
  86.  86        }  
  87.  87  
  88.  88        public static Exp operator &(Exp Left, Exp Right)  
  89.  89        {  
  90.  90            Exp Next = new Exp();  
  91.  91            foreach (SqlParameter sp in Left.sps)  
  92.  92            {  
  93.  93                Next.sps.Add(sp);  
  94.  94            }  
  95.  95            foreach (SqlParameter sp in Right.sps)  
  96.  96            {  
  97.  97                Next.sps.Add(sp);  
  98.  98            }  
  99.  99            Next._Sql = Left.Sql + " AND " + Right.Sql;  
  100. 100            return Next;  
  101. 101        }  
  102. 102  
  103. 103  
  104. 104        public static Exp operator |(Exp Left, Exp Right)  
  105. 105        {  
  106. 106            Exp Next = new Exp();  
  107. 107            foreach (SqlParameter sp in Left.sps)  
  108. 108            {  
  109. 109                Next.sps.Add(sp);  
  110. 110            }  
  111. 111            foreach (SqlParameter sp in Right.sps)  
  112. 112            {  
  113. 113                Next.sps.Add(sp);  
  114. 114            }  
  115. 115            Next._Sql = Left.Sql + " OR " + Right.Sql;  
  116. 116            return Next;  
  117. 117        }  
  118. 118  
  119. 119        public static Exp operator ^(Exp Left, Exp Right)  
  120. 120        {  
  121. 121            Exp Next = new Exp();  
  122. 122            foreach (SqlParameter sp in Left.sps)  
  123. 123            {  
  124. 124                Next.sps.Add(sp);  
  125. 125            }  
  126. 126            foreach (SqlParameter sp in Right.sps)  
  127. 127            {  
  128. 128                Next.sps.Add(sp);  
  129. 129            }  
  130. 130            Next._Sql = Left.Sql + " NOT " + Right.Sql;  
  131. 131            return Next;  
  132. 132        }  
  133. 133    }  
  134. 134    
<
  以上是“<b>SQL强范例查询的实现</b>[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • <b>hosts是什么 hosts文件在什么位置 若何改正hosts</b>
  • <b>在 Windows 8 中手动安装语言包</b>
  • <b>五个常见 PHP数据库问题</b>
  • Windows中Alt键的12个高效快速的利用本领介绍
  • <b>MySQL ORDER BY 的实现解析</b>
  • <b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>
  • <b>Win8系统恢复出来经典的开始菜单的办法</b>
  • <b>Win8系统花屏怎么办 Win8系统花屏的办理办法</b>
  • <b>Windows 7系统下无线网卡安装</b>
  • <b>为什么 Linux不需求碎片整理</b>
  • <b>Windows 8中删除账户的几种办法(图)</b>
  • <b>教你如安在win7下配置路由器</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .