IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> SQLiteHelper帮助类 -> 正文阅读

[大数据]SQLiteHelper帮助类

1、作用

实现SQLite小型数据的操作,包含:创建、读取、修改、写入。如果你想传入临时表(DataTable)、临时数数据集(DataSet)、范式类型(IList)达到更新目的,需要添加 DataOperation类支持,个人也已经封装。

2、引入组件

System.Data.SQLite.dll

SQLite.Interop.dll(该组件如果没有注册可能引入不进去,可以直接放在bin目录即可)

3、帮助类,可以直接创建类SQLiteHelper.cs,复制以下代码:

using AutoPlayer.Common;
using System;
using System.Data;
using System.Data.SQLite;

namespace AutoPlayer.DAL
{
? ? public class SQLiteHelper
? ? {
? ? ? ? //从配置文本中读取连接字符串
? ? ? ? private static string connectionString = XmlHelper.GetAppConfig("dbcon");

? ? ? ? /// <summary>
? ? ? ? /// 创建一个数据库文件。如果存在同名数据库文件,则会覆盖。
? ? ? ? /// </summary>
? ? ? ? /// <param name="dbName"></param>
? ? ? ? public static void CreateDB(string dbName)
? ? ? ? {
? ? ? ? ? ? string l_strdbName = dbName;
? ? ? ? ? ? if (!dbName.Contains("."))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? l_strdbName = dbName + ".sqlite3";
? ? ? ? ? ? }

? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? SQLiteConnection.CreateFile(l_strdbName);
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? }
? ? ? ? }

? ? ? ? /// <summary>
? ? ? ? /// 创建连接到指定数据库
? ? ? ? /// </summary>
? ? ? ? /// <param name="datasource"></param>
? ? ? ? /// <param name="password"></param>
? ? ? ? /// <param name="version"></param>
? ? ? ? public static void SetConnectionString(string datasource, string password = "", int version = 3)
? ? ? ? {
? ? ? ? ? ? connectionString = string.Format("Data Source={0};password={1},Version={2};",
? ? ? ? ? ? ? ? datasource, password, version);
? ? ? ? }

? ? ? ? /// <summary>
? ? ? ? /// 执行命令的方法:insert,update,delete
? ? ? ? /// </summary>
? ? ? ? /// <param name="sql"></param>
? ? ? ? /// <param name="parameters">可变参数,目的是省略了手动构造数组的过程,直接指定对象,编译器会帮助我们构造数组,并将对象加入数组中,传递过来</param>
? ? ? ? /// <returns></returns>
? ? ? ? public static int ExecuteNonQuery(string sql, params SQLiteParameter[] parameters)
? ? ? ? {
? ? ? ? ? ? using (SQLiteConnection connection = new SQLiteConnection(connectionString))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? using (SQLiteCommand command = new SQLiteCommand(connection))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? ? ? ? ? command.CommandText = sql;
? ? ? ? ? ? ? ? ? ? ? ? if (parameters.Length > 0)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? command.Parameters.AddRange(parameters);
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? return command.ExecuteNonQuery();
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? catch (Exception) { throw; }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }

? ? ? ? /// <summary>
? ? ? ? /// 执行查询语句,并返回第一个结果。
? ? ? ? /// </summary>
? ? ? ? /// <param name="sql"></param>
? ? ? ? /// <param name="parameters"></param>
? ? ? ? /// <returns></returns>
? ? ? ? public static object ExecuteScalar(string sql, params SQLiteParameter[] parameters)
? ? ? ? {
? ? ? ? ? ? using (SQLiteConnection conn = new SQLiteConnection(connectionString))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? using (SQLiteCommand cmd = new SQLiteCommand(conn))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? conn.Open();
? ? ? ? ? ? ? ? ? ? ? ? cmd.CommandText = sql;
? ? ? ? ? ? ? ? ? ? ? ? if (parameters.Length != 0)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? cmd.Parameters.AddRange(parameters);
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? return cmd.ExecuteScalar();
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? catch (Exception) { throw; }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }


? ? ? ? /// <summary>
? ? ? ? /// 执行一个查询语句,返回一个包含查询结果的DataTable。?
? ? ? ? /// </summary>
? ? ? ? /// <param name="sql"></param>
? ? ? ? /// <param name="parameters"></param>
? ? ? ? /// <returns></returns>
? ? ? ? public static DataTable ExecuteQuery(string sql, params SQLiteParameter[] parameters)
? ? ? ? {
? ? ? ? ? ? using (SQLiteConnection connection = new SQLiteConnection(connectionString))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? using (SQLiteCommand command = new SQLiteCommand(sql, connection))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? if (parameters.Length != 0)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? command.Parameters.AddRange(parameters);
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? SQLiteDataAdapter adapter = new SQLiteDataAdapter(command);
? ? ? ? ? ? ? ? ? ? DataTable data = new DataTable();
? ? ? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? adapter.Fill(data);
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? catch (Exception)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? return data;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }


? ? ? ? /// <summary>
? ? ? ? /// 执行一个查询语句,返回一个关联的SQLiteDataReader实例。?
? ? ? ? /// </summary>
? ? ? ? /// <param name="sql"></param>
? ? ? ? /// <param name="parameters"></param>
? ? ? ? /// <returns></returns>
? ? ? ? public static SQLiteDataReader ExecuteReader(string sql, params SQLiteParameter[] parameters)
? ? ? ? {
? ? ? ? ? ? SQLiteConnection connection = new SQLiteConnection(connectionString);
? ? ? ? ? ? SQLiteCommand command = new SQLiteCommand(sql, connection);
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? if (parameters.Length != 0)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? command.Parameters.AddRange(parameters);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? return command.ExecuteReader(CommandBehavior.CloseConnection);
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception) { throw; }
? ? ? ? }

? ? ? ? /// <summary>
? ? ? ? /// 查询表字段类型
? ? ? ? /// </summary>
? ? ? ? /// <returns></returns>
? ? ? ? public static DataTable GetSchema()
? ? ? ? {
? ? ? ? ? ? using (SQLiteConnection connection = new SQLiteConnection(connectionString))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? ? ? return connection.GetSchema("TABLES");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? catch (Exception) { throw; }
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
?

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:37:48  更:2022-03-24 00:38:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:16:22-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码