在C#中使用SQLite数据库

轻量级桌面程序数据库不太适合用SQLServer、MySQL之类的重量级数据库,嵌入式数据库更好。在对比Access、SQLite、Firebird数据库后发现SQLite较另外两个有较多优点。

环境:.NET Framework 3.5、windows11 64位、Visual Studio 2010.

C#使用SQLite需要从SQLite官网下载DLL组件。

我是windows11,64位的开发环境,最开始下载的64位的,结果运行时报异常。通过查资料,情况比较复杂(参考:https://blog.51cto.com/xxjjing/5804868),遂重新下载了32位的包:sqlite-netFx35-binary-Win32-2008-1.0.117.0

下载地址:https://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

下载后将包解压放到一个固定目录,需要依赖System.Data.SQLite.dll和SQLite.Interop.dll这两个文件,

在项目里右键项目 > 添加引用 > 选“浏览”选项卡,找到解压后的目录,引入System.Data.SQLite.dll,另一个文件SQLite.Interop.dll不可以通过引用方式添加,必须只能复制文件到运行目录下,通过调试发现程序会自动把System.Data.SQLite.dll也复制到运行目录下,System.Data.SQLite.dll和SQLite.Interop.dll文件会在一起。(尝试过直接复制这两个文件到程序的运行目录下不可行,Visual Studio里不管怎么刷新项目的引用列表都不会出现这两个文件,运行会报错。)

C# 中使用SQLite示例:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;
using System.Data.SQLite;

namespace SQLiteTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Console.WriteLine("SQL Lite 数据库试验");
            // 连接数据库,FailIfMissing=false时若文件不存在会自动创建
            string connStr = "Data Source=test.db;Version=3;Pooling=true;FailIfMissing=false;";
            SQLiteConnection conn = new SQLiteConnection(connStr);
            conn.Open();

            //在指定数据库中创建一个table
            string sql = "create table highscores (name varchar(20), score int)";
            SQLiteCommand command = new SQLiteCommand(sql, conn);
            command.ExecuteNonQuery();

            // 插入一些数据
            sql = "insert into highscores (name, score) values ('Me', 3000)";
            command = new SQLiteCommand(sql, conn);
            command.ExecuteNonQuery();

            sql = "insert into highscores (name, score) values ('Myself', 6000)";
            command = new SQLiteCommand(sql, conn);
            command.ExecuteNonQuery();

            sql = "insert into highscores (name, score) values ('And I', 9001)";
            command = new SQLiteCommand(sql, conn);
            command.ExecuteNonQuery();

            // 查询数据
            sql = "select * from highscores order by score desc";
            command = new SQLiteCommand(sql, conn);
            SQLiteDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                Console.WriteLine("Name: " + reader["name"] + "\tScore: " + reader["score"]);
            }
        }
    }
}

 

 一般建表使用文本文件,不使用代码建(build.sql):

-- admin表
create table admin (
  id nvarchar(32) primary key,
  admin_account nvarchar(32) not null,
  password nvarchar(32) not null
);

-- file表
create table file (
  id nvarchar(32) primary key,
  user_account nvarchar(32) not null,
  user_name nvarchar(32) not null,
  file_path nvarchar(256) not null,
  upload_start_time timestamp,
  upload_end_time timestamp,
  upload_ip nvarchar(20),
  file_md5 nvarchar(32),
  file_size integer,
  file_suffix nvarchar(4)
);

-- file_remove_history表
create table file_remove_history (
  id nvarchar(32) primary key,
  user_account nvarchar(32) not null,
  user_name nvarchar(32) not null,
  file_path nvarchar(256) not null,
  upload_start_time timestamp,
  upload_end_time timestamp,
  upload_ip nvarchar(20),
  file_md5 nvarchar(32),
  file_size integer,
  file_suffix nvarchar(4),
  remove_user nvarchar(20),
  remove_time timestamp
);

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;
using System.Data.SQLite;
using System.IO;

namespace U8FileBackupServer
{
    public partial class Form1 : Form
    {
        
        string dbFile = System.Environment.CurrentDirectory + "\\xxx.db";

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            if (!File.Exists(dbFile))
            {
                Console.WriteLine("文件不存在,执行创建。");
                SQLiteConnection.CreateFile(dbFile);
                // 连接数据库,FailIfMissing=false时若文件不存在也会自动创建
                SQLiteConnection conn = new SQLiteConnection("Data Source=" + dbFile + ";Version=3;Pooling=true;FailIfMissing=false;");
                conn.Open(); // 打开连接

                // 建表
                string sqlText = new StreamReader(System.Environment.CurrentDirectory + "\\build.sql").ReadToEnd();
                Console.WriteLine("= = = = = = = = = = = = = = = = = = = = = = = = =");
                Console.WriteLine(sqlText);
                Console.WriteLine("= = = = = = = = = = = = = = = = = = = = = = = = =");
                SQLiteCommand cmd = new SQLiteCommand(sqlText, conn);
                cmd.ExecuteNonQuery();
                conn.Close(); // 关闭连接
            }
            
            SQLiteConnection conn1 = new SQLiteConnection("Data Source=" + dbFile + ";Version=3;Pooling=true;FailIfMissing=true;");
            conn1.Open();
        // 插入一些数据
            string sql = "insert into admin (id, admin_account, password) values ('111', '管理员', 'admin')";
            SQLiteCommand command = new SQLiteCommand(sql, conn1);
            command.ExecuteNonQuery();
        // 查询数据
            sql = "select * from admin";
            command = new SQLiteCommand(sql, conn1);
            SQLiteDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                Console.WriteLine("admin_account: " + reader["admin_account"] + "\tpassword: " + reader["password"]);
            }
conn1.Close(); } } }

 

更多参考资料:

原文链接:https://www.cnblogs.com/jsper/p/17346758.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:在C#中使用SQLite数据库 - Python技术站

(0)
上一篇 2023年4月27日
下一篇 2023年4月27日

相关文章

  • C#编程实现发送邮件的方法(可添加附件)

    C#编程实现发送邮件的方法(可添加附件) 简介 在C#编程中需要经常发邮件,通常使用SMTP客户端类库实现邮件的发送。本篇攻略将详细讲解C#编程实现发送邮件的方法,并提供两个示例说明。 发送邮件的前置条件 在操作系统中需要安装SMTP服务,以用来发送邮件。常用的SMTP服务器有163邮箱、126邮箱、QQ邮箱、Gmail邮箱等,不同的邮箱提供不同的SMTP服…

    C# 2023年6月1日
    00
  • C#使用加边法计算行列式的值

    C#使用加边法计算行列式的值 什么是行列式? 在数学中,行列式是一个方阵所具有的一个标量值。行列式经常在线性代数、微积分和微分方程中出现,并且在工程、物理和计算机科学等领域也有广泛的应用。 加边法计算行列式 加边法是一种计算行列式的方法,通过对矩阵的某一行或某一列添加系数倍的另一行或另一列实现对行列式的求解。这种方法主要用于计算较小的矩阵,对于大的矩阵而言,…

    C# 2023年6月7日
    00
  • C#中值类型和引用类型的区别深度分析

    C#中值类型和引用类型的区别深度分析 什么是值类型和引用类型? 在C#中,数据类型分为值类型和引用类型两种。 值类型具有以下特点: 存储在栈上; 直接保存值本身; 复制操作是值的拷贝。 而引用类型则具有以下特点: 存储在堆上; 存储的是指向数据的内存地址,即引用; 复制操作只是复制了引用,不是复制数据本身。 如果一个变量存储的是值类型数据,则该变量直接保存具…

    C# 2023年5月15日
    00
  • ASP.NET Core扩展库之Http请求模拟功能的使用

    ASP.NET Core扩展库之Http请求模拟功能的使用 在ASP.NET Core应用程序中,我们经常需要模拟HTTP请求以测试应用程序的功能。ASP.NET Core提供了一个扩展库,可以帮助我们轻松地模拟HTTP请求。本攻略将介绍如何使用ASP.NET Core扩展库中的Http请求模拟功能,并提供两个示例说明。 Http请求模拟功能的使用 在ASP…

    C# 2023年5月17日
    00
  • C#实现在线点餐系统

    C#实现在线点餐系统需要包含以下步骤: 1. 确定需求和功能 在开发任何系统之前,我们必须确定系统需要完成的功能。在在线点餐系统中,一般需要实现以下功能: 用户可以注册或登录,推荐使用ASP.NET Identity框架来实现用户认证和授权功能 用户可以在系统中浏览菜单、查看菜品详细信息、添加菜品到购物车并下单 店家可以登录系统查看订单信息,更新订单状态等功…

    C# 2023年6月1日
    00
  • 手把手教你在.NET中创建Web服务实现方法

    手把手教你在.NET中创建Web服务实现方法 简介 本攻略将介绍如何在.NET中创建Web服务及其实现方法。在本文中,我们将会学习使用C#编写Web服务,并且在客户端调用此服务。同时,我们还将会探讨如何使用不同类型的服务。 步骤 第一步:创建Web服务 首先,打开Visual Studio并创建新项目。在“新建项目”对话框中,选择“ASP.NET Web应用…

    C# 2023年5月31日
    00
  • 手把手教你如何基于C#制作一个网址检测工具

    手把手教你基于C#制作一个网址检测工具 简介 网址检测工具是一种用来检测网址是否可用的工具,可以帮助用户快速定位网站故障原因,提高用户的使用体验。该教程框架基于C#语言,本文将详细阐述如何基于C#制作一个网址检测工具。 准备工作 在开始之前,请先安装好 .NET环境,并下载安装 Visual Studio。 实现步骤 1. 创建项目 在 Visual Stu…

    C# 2023年6月6日
    00
  • C#异常捕获机制图文详解

    下面是详细讲解“C#异常捕获机制图文详解”的完整攻略: 一、什么是C#异常 在C#的编程过程中,由于各种各样的原因,程序可能会出现意料之外的错误,例如文件不存在,网络连接中断等等。这些错误就是异常,在C#中,异常是指运行时错误,通常指程序执行时出现的不可预期的错误或错误状态。 二、C#异常捕获机制 C#提供了一套完善的异常捕获机制,可以在程序出现异常时对异常…

    C# 2023年5月15日
    00
合作推广
合作推广
分享本页
返回顶部