xulisong 6 лет назад
Родитель
Сommit
4fa2f4eab8

+ 23 - 0
MBI/SAGA.DotNetUtils/DB/SQLiteUpdateUtil.cs

@@ -0,0 +1,23 @@
+/*-------------------------------------------------------------------------
+ * 功能描述:SQLiteUpdateUtil
+ * 作者:xulisong
+ * 创建时间: 2019/3/19 16:54:35
+ * 版本号:v1.0
+ *  -------------------------------------------------------------------------*/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SAGA.DotNetUtils.DB
+{
+    public static class SQLiteUpdateUtil
+    {
+        public static void UpdateDb(int oldVersion, int newVersion)
+        {
+           // SQLiteHelper.exno
+        }
+    }
+}

+ 1 - 0
MBI/SAGA.DotNetUtils/SAGA.DotNetUtils.csproj

@@ -297,6 +297,7 @@
     <Compile Include="Data\SingleFactory.cs" />
     <Compile Include="Data\SingleInstance.cs" />
     <Compile Include="DB\SQLiteHelper.cs" />
+    <Compile Include="DB\SQLiteUpdateUtil.cs" />
     <Compile Include="DB\TableNameAttribute.cs" />
     <Compile Include="Encrypt\MD5Tools.cs" />
     <Compile Include="Extend\BitmapExtend.cs" />