摘要: /// <summary> /// SQLiteDBUtility 的摘要说明 /// </summary> public class SQLiteDBUtility { /// <summary> /// Creates a new <see cref="SQLiteDBUtility"/> in 阅读全文
posted @ 2022-08-10 23:17 码农阿亮 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 一、Nuget安装包 Nuget安装System.Data.SQLite.Core 二、书写帮助类 项目中新建SqLiteHelper.cs类文件,代码如下 #region << 版 本 注 释 >> /* * 创建者:Administrator * 创建时间:2022/8/10 22:25:58 阅读全文
posted @ 2022-08-10 22:59 码农阿亮 阅读(861) 评论(0) 推荐(0) 编辑
摘要: sqliteexpert:https://www.sqliteexpert.com/download.html 关于SQLite的connection string说明:https://www.connectionstrings.com/sqlite/ DBeaver:https://dbeaver 阅读全文
posted @ 2022-08-10 21:32 码农阿亮 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 一、js获取当前月份的第一天 function getCurrentMonthFirst(){ var date = new Date(); date.setDate(1); var month = parseInt(date.getMonth()+1); var day = date.getDat 阅读全文
posted @ 2022-08-10 19:16 码农阿亮 阅读(431) 评论(0) 推荐(0) 编辑