DBhelper

Jun 07, 2016 pm 05:42 PM

1 using System; 2 using System.Configuration; 3 using System.Collections.Generic; 4 using System.Data; 5 using System.Data.Common; 6 using System. Text ; 7 8 public static class Db 9 { ; 11 public static DbProviderFactory Factory = DbProvi

1 using System; 2 using System.Configuration; 3 using System.Collections.Generic; 4 using System.Data; 5 using System.Data.Common; 6 using System.Text; 7   8 public static class Db 9 { ; 11     public static DbProviderFactory Factory = DbProviderFactories.GetFactory(ConnectionString.ProviderName); 12   13     public static DbConnection CreateConnection() 14     { 15         DbConnection con = Factory.CreateConnection(); 16         con.ConnectionString = ConnectionString.ConnectionString; 17         return con; 18     } 19   20     #region 参数 21   22     public static DbParameter CreateParameter(DbParameter param) 23     { 24         return CreateParameter(param.ParameterName, param.Value, param.DbType, param.Size, param.Direction, param.SourceColumn, param.SourceColumnNullMapping, param.SourceVersion); 25     } 26   , ParameterDirection? Direction , bool? SourceColumnNullMapping ) 28     { 29         DbParameter param = Factory.CreateParameter(); 30   31         param.ParameterName = ParameterName; 32         param.Value = Value; 33   34         if (DbType != null) 35             param.DbType = DbType.Value; 36         if (Size != null) 37             param.Size = Size.Value; 38         if (Direction != null) 39             param.Direction = Direction.Value; 40         if (SourceColumn != null) 41             param.SourceColumn = SourceColumn; 42         if (SourceColumnNullMapping != null) 43             param.SourceColumnNullMapping = SourceColumnNullMapping.Value; 44         if (SourceVersion != null) 45             param.SourceVersion = SourceVersion.Value; 46   47         return param; 48     } 49   50     private static DbParameter[] ConvertParameters(object[] parameters) 51     { 52         ListDbParameter> paramList = new ListDbParameter>(); 53   54         for (int i = 0; i parameters.Length; i++) 55         { DbParameterCollection) DbParameterCollection) paramList.Add(CreateParameter(item)); DbParameter) DbParameter); )); 62         } 63   64         return paramList.ToArray(); 65     } 66   67     #endregion 68   69     public static Query Query(string query, params object[] parameters) 70     { 71         return new Query(query, ConvertParameters(parameters)); 72     } 73   74     public static bool Insert(string table, object model) 75     { 76         StringBuilder fields = new StringBuilder(); 77         StringBuilder values = new StringBuilder(); 78         ListDbParameter> paramList = new ListDbParameter>(); 79   80         foreach (var item in model.GetType().GetProperties()) 81         { ,", item.Name); 83             values.AppendFormat("@{0},", item.Name); 84             paramList.Add(CreateParameter("@" + item.Name, item.GetValue(model, null))); 85         } 86   ({), )), paramList.ToArray()).Execute() > 0; 88     } 89   90     public static bool Update(string table, object model, string where, params object[] parameters) 91     { 92         StringBuilder fieldsAndValues = new StringBuilder(); 93         ListDbParameter> paramList = new ListDbParameter>(); 94   95         foreach (var item in model.GetType().GetProperties()) 96         { @{0},", item.Name); 98             paramList.Add(CreateParameter("@" + item.Name, item.GetValue(model, null))); 99         } 100   101         paramList.AddRange(ConvertParameters(parameters)); 102   {) ; 104     } 105 } 106   107 public class Query 108 { 109     #region 构造方法 110   111     public Query(string query, DbParameter[] parameters) 112     { 113         SqlQuery = query; 114         Parameters = parameters; 115     } 116   117     public Query(string query, DbParameter[] parameters, bool isException) 118         : this(query, parameters) 119     { 120         IsException = isException; 121     } 122   123     #endregion 124   125     #region 属性/字段 126   127     private bool IsException { get; set; } 128     public string SqlQuery { get; set; } 129     public DbParameter[] Parameters { get; set; } 130   131     #endregion 132   133     #region 执行基础 134   135     private T ExecuteCommonT>(FuncDbCommand, T> function) 136     { 137         using (DbConnection con = Db.CreateConnection()) 138         using (DbCommand cmd = con.CreateCommand()) 139         { 140             cmd.CommandText = SqlQuery; 141             cmd.Parameters.AddRange(Parameters); 142             con.Open(); 143             T result = function(cmd); 144             cmd.Parameters.Clear(); 145             return result; 146         } 147     } 148   , T exValue = default(T)) 150     { 151         if (IsException) 152             return ExecuteCommonT>(function); 153   154         try 155         { 156             return ExecuteCommonT>(function); 157         } 158         catch (Exception e) 159         { 160             Console.WriteLine(e.ToString()); 161             return exValue; 162         } 163     } 164   165     public void Execute(ActionDbCommand> action) 166     { 167         Execute(cmd => { action(cmd); return 0; }); 168     } 169   170     #endregion 171   172     #region 执行查询 173   () 175     { 176         return Execute(cmd => cmd.ExecuteNonQuery()); 177     } 178   179     public object Scalar() 180     { 181         return Execute(cmd => cmd.ExecuteScalar()); 182     } 183   184     public T ScalarT>() 185     { 186         return Execute(cmd => (T)cmd.ExecuteScalar()); 187     } 188   189     public Query Top(int count) 190     { ({1}) as t0", count, SqlQuery), Parameters); 192     } 193   194     public Single ToSingle() 195     {         { 198             Single s = new Single(); 199   200             using (var dr = cmd.ExecuteReader()) 201             { 202                 if (dr.Read()) 203                 { 204                     string name = string.Empty; 205   206                     for (int i = 0; i dr.FieldCount; i++) 207                     { 208                         name = dr.GetName(i); dr; 210                     } 211                 } 212                 else 213                 { 214                     throw new Exception("Not Find !!"); 215                 } 216             } 217   218             return s; 219         }); 220   221     } 222   223     public DataTable ToDataTable() 224     {         { 227             DbDataAdapter da = Db.Factory.CreateDataAdapter(); 228             da.SelectCommand = cmd; 229             DataTable dt = new DataTable(); 230             da.Fill(dt); 231             return dt; 232         }); 233     } 234   235     public ListT> ToListT>() 236     {         { 239             ListT> list = new ListT>(); 240   241             using (var dr = cmd.ExecuteReader()) 242             { 243                 while (dr.Read()) 244                 { 245                     Type t = typeof(T); 246                     T s = default(T); 247                     string name = string.Empty; 248   249                     for (int i = 0; i dr.FieldCount; i++) 250                     { 251                         name = dr.GetName(i); 252                         var pro = t.GetProperty(name); 253   254                         if (pro != null) , null); 256                     } 257   258                     list.Add(s); 259                 } 260             } 261   262             return list; 263         }, new ListT>()); 264     } 265   266     public override string ToString() 267     { 268         return Scalarstring>(); 269     } 270   271     #endregion 272   273     #region 分页 274   275     private Query RecordCountQuery 276     { 277         get { return Db.Query(string.Format("select count(*) from ({0}) as t0", SqlQuery), Parameters); } 278     } 279   280     private Query PagerResultQuery(string primaryKey, int pageIndex, int pageSize) 281     { ({? " {2} t1.{3} from ({0}) as t1)" : ""), 284             SqlQuery, pageSize, pageIndex * pageSize, primaryKey), Parameters); 285     } 286   recordCount) 288     { ()); 290         return PagerResultQuery(primaryKey, pageIndex, pageSize).ToDataTable(); 291     } 292   recordCount) 294     { 295         return ToPager("Id", pageIndex, pageSize, recordCount); 296     } 297   recordCount) 299     { ()); 301         return PagerResultQuery(primaryKey, pageIndex, pageSize).ToListT>(); 302     } 303   recordCount) 305     { 306         return ToPagerT>("Id", pageIndex, pageSize, recordCount); 307     } 308   309     #endregion 310 } 311   {     { ; } 317         set { Add(name.ToLower(), value); } 318     } 319 } ,网站空间,美国服务器,虚拟主机

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of mysql cannot open shared library How to solve the problem of mysql cannot open shared library Mar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

Reduce the use of MySQL memory in Docker Reduce the use of MySQL memory in Docker Mar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin) Run MySQl in Linux (with/without podman container with phpmyadmin) Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overview What is SQLite? Comprehensive overview Mar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Running multiple MySQL versions on MacOS: A step-by-step guide Running multiple MySQL versions on MacOS: A step-by-step guide Mar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles