
SQLite
djk8888
我的资源:https://download.youkuaiyun.com/user/djk8888/uploads
我的博客:https://blog.youkuaiyun.com/djk8888
展开
-
[转]SQLite与SQLserver差异
SQLite在线教程:http://www.runoob.com/sqlite/sqlite-syntax.html与SQLserver区别:https://www.cnblogs.com/tianboblog/p/4200685.html主要是:查询时把两个字段拼接在一起--sqlserver--select Filed1+'@'+Filed2 from table--s...转载 2019-04-10 10:17:31 · 2345 阅读 · 0 评论 -
一个SQLiteHelper类
using System;using System.Collections;using System.Configuration;using System.Data;using System.Data.SQLite;public class SQLiteHelper{ //数据库连接字符串(web.config来配置),可以动态更改SQLString支持多数据库. ...转载 2019-04-28 10:59:35 · 1774 阅读 · 0 评论 -
整理了一个较精简的SQLiteHelper
using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Data.SQLite;public class SQLiteHelper{ //数据库连接字符串(web.config来配置),可以动态更改SQLString支持多数...原创 2019-04-11 14:25:06 · 1022 阅读 · 0 评论