SQLiteHelper.cs 20.7 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data;
using System.Data.SQLite;
using System.Linq;
using System.Reflection;
using System.Text;

namespace FLY.OBJComponents.Common.SQLite
{
    public class SQLiteHelper
    {
        #region 静态操作
        public class SQLiteFieldTypeInfo
        {
            /// <summary>
            /// sqlite field 类型
            /// </summary>
            public string FieldType { get; set; }
            /// <summary>
            /// C# 类型
            /// </summary>
            public Type PropertyType { get; set; }

            /// <summary>
            /// C# 类型转 sqlite 字符串
            /// </summary>
            public Func<object, string> PtoS { get; set; } = DefaultToS;

            public Func<object, object> StoP { get; set; } = DefaultToP;

            public static string DefaultToS(object obj)
            {
                return obj.ToString();
            }

            public static object DefaultToP(object obj)
            {
                return obj;
            }

            public SQLiteFieldTypeInfo(string fieldtype, Type propertytype)
            {
                FieldType = fieldtype;
                PropertyType = propertytype;
            }
            public SQLiteFieldTypeInfo(string fieldtype, Type propertytype, Func<object, string> ptos, Func<object, object> stop)
            {
                FieldType = fieldtype;
                PropertyType = propertytype;
                PtoS = ptos;
                StoP = stop;

            }


        }
        public static List<SQLiteFieldTypeInfo> FieldTypeInfo { get; set; }


        static SQLiteHelper()
        {

            FieldTypeInfo = new List<SQLiteFieldTypeInfo>
            {
                new SQLiteFieldTypeInfo("INTEGER",typeof(int),
                        SQLiteFieldTypeInfo.DefaultToS,
                        (obj)=>{
                            return Convert.ToInt32(obj);
                        }
                    ),
                new SQLiteFieldTypeInfo("INTEGER",typeof(Int64)),
                new SQLiteFieldTypeInfo("BOOLEAN",typeof(bool)),
                new SQLiteFieldTypeInfo("DOUBLE",typeof(double),
                        (obj)=>{
                            if(double.IsNaN((double)obj))
                                    return "NULL";
                            else return obj.ToString();
                        },
                        (obj)=>{
                            if(obj == DBNull.Value)
                                return double.NaN;
                            else
                                return obj;
                        }
                     ),
                new SQLiteFieldTypeInfo("STRING",typeof(string),
                        (obj)=>"'" + obj + "'",
                        SQLiteFieldTypeInfo.DefaultToP
                     ),
                new SQLiteFieldTypeInfo("DATETIME",typeof(DateTime),
                        (obj)=>"'" + ((DateTime)obj).ToString("yyyy-MM-dd HH:mm:ss.fff") + "'",
                        SQLiteFieldTypeInfo.DefaultToP
                     )
            };
        }

        public class ArrayFieldTypeInfo
        {
            /// <summary>
            /// 属性名
            /// </summary>
            public string PropertyName { get; set; }
            /// <summary>
            /// 数组大小
            /// </summary>
            public int Length { get; set; }

            public ArrayFieldTypeInfo(string propertyname, int length)
            {

                PropertyName = propertyname;
                Length = length;
            }
        }


        public static string GetTableName(Type type)
        {
            var attributes = type.GetCustomAttributes(typeof(TableAttribute), false);
            if (attributes.Count() > 0)
            {
                return ((TableAttribute)attributes.First()).Name;
            }
            else
            {
                return type.Name;
            }
        }

133
        static string GetCreateTableCommandText_fieldText(Type type, IEnumerable<ArrayFieldTypeInfo> arrayFieldTypeInfos)
潘栩锋's avatar
潘栩锋 committed
134 135 136 137 138
        {
            string fieldtext = "";
            PropertyInfo[] propertyInfos = type.GetProperties();
            foreach (var propertyInfo in propertyInfos)
            {
潘栩锋's avatar
潘栩锋 committed
139 140 141 142
                //忽略
                if (propertyInfo.GetCustomAttributes(typeof(IgnoreAttribute), false).Count() > 0)
                    continue;

潘栩锋's avatar
潘栩锋 committed
143 144 145 146 147
                if (fieldtext != "")
                {
                    fieldtext += ",";
                }

148 149 150 151 152 153 154 155 156 157 158 159
                //这个属性 下面的全部属性,是同一个表
                if (propertyInfo.GetCustomAttributes(typeof(BortherAttribute), false).Count() > 0)
                {
                    //从arrayFieldTypeInfos 提取
                    string startswith = propertyInfo.Name + ".";
                    var aftis = from afti in arrayFieldTypeInfos
                    where afti.PropertyName.StartsWith(startswith)
                    select new ArrayFieldTypeInfo(afti.PropertyName.Substring(startswith.Length), afti.PropertyName.Length);
                    fieldtext += GetCreateTableCommandText_fieldText(propertyInfo.PropertyType, aftis);
                    continue;
                }

潘栩锋's avatar
潘栩锋 committed
160 161 162 163 164 165 166
                if (propertyInfo.PropertyType.IsArray)//是数组,需要明确大小
                {
                    int length = arrayFieldTypeInfos.First((a) => a.PropertyName == propertyInfo.Name).Length;

                    Type elementType = propertyInfo.PropertyType.GetElementType();

                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == elementType);
167
 
潘栩锋's avatar
潘栩锋 committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
                    for (int i = 0; i < length; i++)
                    {
                        if (i != 0)
                            fieldtext += ",";

                        fieldtext += string.Format("{0}{1} {2}",
                            propertyInfo.Name,
                            i,
                            fieldTypeInfo.FieldType);
                    }
                }
                else
                {
                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == propertyInfo.PropertyType);

                    fieldtext += string.Format("{0} {1}", propertyInfo.Name, fieldTypeInfo.FieldType);

                    //主键
                    if (propertyInfo.GetCustomAttributes(typeof(KeyAttribute), false).Count() > 0)
                        fieldtext += " PRIMARY KEY";
                }
            }
190 191 192 193 194 195 196 197 198 199 200 201 202 203

            return fieldtext;
        }
        public static string GetCreateTableCommandText(Type type, params ArrayFieldTypeInfo[] arrayFieldTypeInfos)
        {
            //CREATE TABLE table_name(
            //column1 datatype  PRIMARY KEY,
            //column2 datatype,
            //   column3 datatype,
            //   .....
            //   columnN datatype,
            //)
            string tablename = GetTableName(type);
            string fieldtext = GetCreateTableCommandText_fieldText(type, arrayFieldTypeInfos);
潘栩锋's avatar
潘栩锋 committed
204 205 206 207 208
            string commandText = string.Format("CREATE TABLE {0} ({1})", tablename, fieldtext);
            return commandText;
        }


209 210
        static string GetInsertCommandText_fieldText(object cell)
        {
潘栩锋's avatar
潘栩锋 committed
211 212 213 214 215
            Type type = cell.GetType();
            string fieldtext = "";
            PropertyInfo[] propertyInfos = type.GetProperties();
            foreach (var propertyInfo in propertyInfos)
            {
潘栩锋's avatar
潘栩锋 committed
216 217 218 219
                //忽略
                if (propertyInfo.GetCustomAttributes(typeof(IgnoreAttribute), false).Count() > 0)
                    continue;

潘栩锋's avatar
潘栩锋 committed
220 221 222 223 224
                if (fieldtext != "")
                {
                    fieldtext += ",";
                }

225 226 227 228 229 230 231 232 233 234
                object o = propertyInfo.GetValue(cell, null);


                //这个属性 下面的全部属性,是同一个表
                if (propertyInfo.GetCustomAttributes(typeof(BortherAttribute), false).Count() > 0)
                {
                    fieldtext += GetInsertCommandText_fieldText(o);
                    continue;
                }

潘栩锋's avatar
潘栩锋 committed
235 236 237 238 239 240
                if (propertyInfo.PropertyType.IsArray)//是数组,需要明确大小
                {
                    Type elementType = propertyInfo.PropertyType.GetElementType();

                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == elementType);

241
                    Array a = o as Array;
潘栩锋's avatar
潘栩锋 committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257

                    for (int i = 0; i < a.Length; i++)
                    {
                        if (i != 0)
                            fieldtext += ",";

                        fieldtext += fieldTypeInfo.PtoS(a.GetValue(i));
                    }
                }
                else
                {
                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == propertyInfo.PropertyType);

                    fieldtext += fieldTypeInfo.PtoS(o);
                }
            }
258 259 260 261 262 263 264 265 266 267
            return fieldtext;
        }
        public static string GetInsertCommandText(object cell)
        {
            //不用
            //INSERT INTO TABLE_NAME[(column1, column2, column3,...columnN)]
            //VALUES(value1, value2, value3,...valueN);

            //使用
            //INSERT INTO TABLE_NAME VALUES(value1, value2, value3,...valueN);
潘栩锋's avatar
潘栩锋 committed
268

269 270 271
            Type type = cell.GetType();
            string tablename = GetTableName(type);
            string fieldtext = GetInsertCommandText_fieldText(cell);
潘栩锋's avatar
潘栩锋 committed
272 273 274
            string commandText = string.Format("INSERT INTO {0} VALUES({1})", tablename, fieldtext);
            return commandText;
        }
潘栩锋's avatar
潘栩锋 committed
275

276 277

        static string GetUpdateCommandText_fieldText(object cell)
潘栩锋's avatar
潘栩锋 committed
278 279 280 281 282 283 284 285 286 287 288 289
        {
            //UPDATE table_name
            //SET column1 = value1, column2 = value2...., columnN = valueN
            //WHERE[condition];

            Type type = cell.GetType();
            string tablename = GetTableName(type);

            string fieldtext = "";
            PropertyInfo[] propertyInfos = type.GetProperties();
            foreach (var propertyInfo in propertyInfos)
            {
潘栩锋's avatar
潘栩锋 committed
290 291 292 293
                //忽略
                if (propertyInfo.GetCustomAttributes(typeof(IgnoreAttribute), false).Count() > 0)
                    continue;

潘栩锋's avatar
潘栩锋 committed
294 295 296 297 298
                if (fieldtext != "")
                {
                    fieldtext += ",";
                }

299 300 301 302 303 304 305 306 307
                object o = propertyInfo.GetValue(cell, null);

                //这个属性 下面的全部属性,是同一个表
                if (propertyInfo.GetCustomAttributes(typeof(BortherAttribute), false).Count() > 0)
                {
                    fieldtext += GetUpdateCommandText_fieldText(o);
                    continue;
                }

潘栩锋's avatar
潘栩锋 committed
308 309 310 311 312 313
                if (propertyInfo.PropertyType.IsArray)//是数组,需要明确大小
                {
                    Type elementType = propertyInfo.PropertyType.GetElementType();

                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == elementType);

314
                    Array a = o as Array;
潘栩锋's avatar
潘栩锋 committed
315 316 317 318 319 320

                    for (int i = 0; i < a.Length; i++)
                    {
                        if (i != 0)
                            fieldtext += ",";

321
                        fieldtext += string.Format("{0}{1} = {2}", propertyInfo.Name, i, fieldTypeInfo.PtoS(a.GetValue(i)));
潘栩锋's avatar
潘栩锋 committed
322 323 324 325 326 327
                    }
                }
                else
                {
                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == propertyInfo.PropertyType);

328 329

                    fieldtext += string.Format("{0} = {1}", propertyInfo.Name, fieldTypeInfo.PtoS(o));
潘栩锋's avatar
潘栩锋 committed
330 331 332
                }
            }

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
            return fieldtext;
        }
        /// <summary>
        /// condition 为 "WHERE ......"
        /// </summary>
        /// <param name="cell"></param>
        /// <param name="condition"></param>
        /// <returns></returns>
        public static string GetUpdateCommandText(object cell, string condition)
        {
            //UPDATE table_name
            //SET column1 = value1, column2 = value2...., columnN = valueN
            //WHERE[condition];

            Type type = cell.GetType();
            string tablename = GetTableName(type);
            string fieldtext = GetUpdateCommandText_fieldText(cell);
            string commandText = $"UPDATE {tablename} SET {fieldtext}";

            if (!string.IsNullOrEmpty(condition))
                commandText += $" {condition}";

潘栩锋's avatar
潘栩锋 committed
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
            return commandText;
        }

        public static List<T> ToObjs<T>(DataTable dataTable, params ArrayFieldTypeInfo[] arrayFieldTypeInfos)
            where T : new()
        {
            Type type = typeof(T);
            List<T> list = new List<T>();
            foreach (DataRow dataRow in dataTable.Rows)
            {
                list.Add(ToObj<T>(dataRow, arrayFieldTypeInfos));
            }
            return list;
        }

370
        static void SetObj(object t, DataRow dataRow, IEnumerable<ArrayFieldTypeInfo> arrayFieldTypeInfos)
潘栩锋's avatar
潘栩锋 committed
371
        {
372 373
            Type type = t.GetType();

潘栩锋's avatar
潘栩锋 committed
374
            PropertyInfo[] propertyInfos = type.GetProperties();
375

潘栩锋's avatar
潘栩锋 committed
376 377
            foreach (var propertyInfo in propertyInfos)
            {
378 379 380 381
                //忽略
                if (propertyInfo.GetCustomAttributes(typeof(IgnoreAttribute), false).Count() > 0)
                    continue;

潘栩锋's avatar
潘栩锋 committed
382
                Type ptype = propertyInfo.PropertyType;
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
                
                //这个属性 下面的全部属性,是同一个表
                if (propertyInfo.GetCustomAttributes(typeof(BortherAttribute), false).Count() > 0)
                {
                    //从arrayFieldTypeInfos 提取
                    string startswith = propertyInfo.Name + ".";
                    var aftis = from afti in arrayFieldTypeInfos
                                where afti.PropertyName.StartsWith(startswith)
                                select new ArrayFieldTypeInfo(afti.PropertyName.Substring(startswith.Length), afti.PropertyName.Length);

                    object obj = propertyInfo.GetValue(t, null);
                    SetObj(obj, dataRow, aftis);
                    continue;
                }

潘栩锋's avatar
潘栩锋 committed
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419

                if (ptype.IsArray)//是数组,需要明确大小
                {
                    Type elementType = propertyInfo.PropertyType.GetElementType();
                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == elementType);
                    int length = arrayFieldTypeInfos.First((a) => a.PropertyName == propertyInfo.Name).Length;

                    Array array = (Array)ptype.Assembly.CreateInstance(ptype.FullName, false, BindingFlags.CreateInstance, null, new object[] { length }, null, null);
                    for (int i = 0; i < length; i++)
                    {
                        object o = fieldTypeInfo.StoP(dataRow[propertyInfo.Name + i]);
                        array.SetValue(o, i);
                    }
                    propertyInfo.SetValue(t, array, null);
                }
                else
                {
                    SQLiteFieldTypeInfo fieldTypeInfo = FieldTypeInfo.Find((fti) => fti.PropertyType == ptype);
                    object o = fieldTypeInfo.StoP(dataRow[propertyInfo.Name]);
                    propertyInfo.SetValue(t, o, null);
                }
            }
420 421 422 423 424 425 426
        }
        public static T ToObj<T>(DataRow dataRow, params ArrayFieldTypeInfo[] arrayFieldTypeInfos)
            where T : new()
        {
            Type type = typeof(T);
            T t = new T();
            SetObj(t, dataRow, arrayFieldTypeInfos);
潘栩锋's avatar
潘栩锋 committed
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
            return t;
        }

        #endregion


        public string ConnectionString;
        /// <summary> 
        /// 查询数据库中的所有数据类型信息。
        /// </summary> 
        /// <returns></returns> 
        /// <exception cref="Exception"></exception>
        public DataTable ExecuteReader(string sql)
        {
            DataTable data;
潘栩锋's avatar
潘栩锋 committed
442
            using (SQLiteConnection connection = new SQLiteConnection(ConnectionString))
潘栩锋's avatar
潘栩锋 committed
443
            {
潘栩锋's avatar
潘栩锋 committed
444 445 446 447 448 449 450 451 452 453
                using (SQLiteCommand command = new SQLiteCommand(connection))
                {
                    connection.Open();
                    command.CommandText = sql;
                    // 开始读取
                    SQLiteDataAdapter adapter = new SQLiteDataAdapter(command);
                    data = new DataTable();
                    adapter.Fill(data);
                    connection.Close();
                }
潘栩锋's avatar
潘栩锋 committed
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
            }
            return data;
        }
        /// <summary> 
        /// 对SQLite数据库执行增删改操作,返回受影响的行数。 
        /// </summary> 
        /// <param name="sql">要执行的增删改的SQL语句。</param> 
        /// <param name="parameters">执行增删改语句所需要的参数,参数必须以它们在SQL语句中的顺序为准。</param> 
        /// <returns></returns> 
        /// <exception cref="Exception"></exception>
        public void ExecuteNonQuery(string sql)
        {
            using (SQLiteConnection connection = new SQLiteConnection(ConnectionString))
            {
                using (SQLiteCommand command = new SQLiteCommand(connection))
                {
                    connection.Open();
                    command.CommandText = sql;
                    command.ExecuteNonQuery();
潘栩锋's avatar
潘栩锋 committed
473
                    connection.Close();
潘栩锋's avatar
潘栩锋 committed
474 475 476 477
                }
            }
        }

潘栩锋's avatar
潘栩锋 committed
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498

        /// <summary>
        ///     
        /// </summary>
        /// <param name="sql"></param>
        /// <returns>The first column of the first row of the first resultset from the query.</returns>
        public object ExecuteScalar(string sql)
        {
            object obj = null;
            using (SQLiteConnection connection = new SQLiteConnection(ConnectionString))
            {
                using (SQLiteCommand command = new SQLiteCommand(connection))
                {
                    connection.Open();
                    command.CommandText = sql;
                    obj = command.ExecuteScalar();
                    connection.Close();
                }
            }
            return obj;
        }
潘栩锋's avatar
潘栩锋 committed
499 500 501 502 503 504 505
        /// <summary>
        /// 多行执行
        /// </summary>
        /// <param name="queryList"></param>
        /// <returns></returns>
        public bool QueryTran(IEnumerable<string> queryList)
        {
潘栩锋's avatar
潘栩锋 committed
506
            using (SQLiteConnection connection = new SQLiteConnection(ConnectionString))
潘栩锋's avatar
潘栩锋 committed
507
            {
潘栩锋's avatar
潘栩锋 committed
508
                using (SQLiteCommand command = new SQLiteCommand(connection))
潘栩锋's avatar
潘栩锋 committed
509
                {
潘栩锋's avatar
潘栩锋 committed
510
                    connection.Open();
潘栩锋's avatar
潘栩锋 committed
511

潘栩锋's avatar
潘栩锋 committed
512
                    SQLiteTransaction tran = connection.BeginTransaction();
潘栩锋's avatar
潘栩锋 committed
513 514 515 516 517
                    bool check = false;
                    try
                    {
                        foreach (string item in queryList)
                        {
潘栩锋's avatar
潘栩锋 committed
518 519
                            command.CommandText = item;
                            command.ExecuteNonQuery();
潘栩锋's avatar
潘栩锋 committed
520 521 522 523 524 525 526 527 528 529 530 531
                        }
                        tran.Commit();
                        check = true;
                    }
                    catch (Exception ex)
                    {
                        tran.Rollback();
                        check = false;
                        throw ex;
                    }
                    finally
                    {
潘栩锋's avatar
潘栩锋 committed
532
                        connection.Close();
潘栩锋's avatar
潘栩锋 committed
533 534 535 536 537 538 539
                    }
                    return check;
                }
            }


        }
潘栩锋's avatar
潘栩锋 committed
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578


        /// <summary>
        /// 输入DDLs 判断这些table都是否合法
        /// </summary>
        /// <param name="DDLs">key=tablename, value=DDL</param>
        /// <returns></returns>
        public bool IsTableValid(Dictionary<string,string> DDLs)
        {

            //检测 table 是否合法
            DataTable data = ExecuteReader("SELECT name,sql FROM sqlite_master WHERE type = 'table'");

            //任意一个表不对,或者不存在,都必须重建
            bool isVaild = true;
            foreach (var kv in DDLs)
            {
                string tablename = kv.Key;
                string createtable_sql = kv.Value;
                
                var sqls = from r in data.AsEnumerable() where (string)r["name"] == tablename select r["sql"];
                if (sqls.Count() == 0)
                {
                    //不存在该表,创建
                    isVaild = false;
                    break;
                }
                else
                {
                    string sql = (string)sqls.First();
                    if (sql != createtable_sql)
                    {
                        isVaild = false;
                        break;
                    }
                }
            }
            return isVaild;
        }
潘栩锋's avatar
潘栩锋 committed
579 580
    }
}