|
@@ -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
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|