-
.NET中轻松应用SQLite:零配置数据库引擎的完美指南
SQLite 是一种轻量级的嵌入式数据库引擎,它在 .NET 中被广泛使用。SQLite 是一个零配置的数据库引擎,不需要服务器,可以直接在应用程序中使用。下面是一个简单的示例,演示如何在 .NET 中使用 SQLite,并提供了常见的查询、增加、修改和删除功能。
首先,你需要在项目中安装 System.Data.SQLite 包。你可以使用 NuGet 包管理器或通过 Package Manager Console 执行以下命令:
Install-Package System.Data.SQLite
接下来,创建一个 C# 文件,例如 SQLiteExample.cs,并添加以下代码:
using System;
using System.Data.SQLite;
class Program
{
static void Main()
{
// 指定数据库文件路径
string dbFilePath = "sample.db";
// 连接字符串
string connectionString = $"Data Source={dbFilePath};Version=3;";
// 创建数据库连接
using (SQLiteConnection connection = new SQLiteConnection(connectionString))
{
connection.Open();
// 创建表
CreateTable(connection);
// 插入数据
InsertData(connection, "John Doe", 30);
// 查询数据
QueryData(connection);
// 更新数据
UpdateData(connection, 1, "Updated Name", 35);
// 查询更新后的数据
QueryData(connection);
// 删除数据
DeleteData(connection, 1);
// 查询删除后的数据
QueryData(connection);
}
}
static void CreateTable(SQLiteConnection connection)
{
using (SQLiteCommand command = new SQLiteCommand(
"CREATE TABLE IF NOT EXISTS Users (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT, Age INTEGER);", connection))
{
command.ExecuteNonQuery();
}
Console.WriteLine("Table created or already exists.");
}
static void InsertData(SQLiteConnection connection, string name, int age)
{
using (SQLiteCommand command = new SQLiteCommand(
"INSERT INTO Users (Name, Age) VALUES (@Name, @Age);", connection))
{
command.Parameters.AddWithValue("@Name", name);
command.Parameters.AddWithValue("@Age", age);
command.ExecuteNonQuery();
}
Console.WriteLine("Data inserted.");
}
static void QueryData(SQLiteConnection connection)
{
using (SQLiteCommand command = new SQLiteCommand(
"SELECT * FROM Users;", connection))
{
using (SQLiteDataReader reader = command.ExecuteReader())
{
Console.WriteLine("Id\tName\tAge");
while (reader.Read())
{
Console.WriteLine($"{reader["Id"]}\t{reader["Name"]}\t{reader["Age"]}");
}
}
}
Console.WriteLine("Data queried.");
}
static void UpdateData(SQLiteConnection connection, int id, string name, int age)
{
using (SQLiteCommand command = new SQLiteCommand(
"UPDATE Users SET Name=@Name, Age=@Age WHERE Id=@Id;", connection))
{
command.Parameters.AddWithValue("@Name", name);
command.Parameters.AddWithValue("@Age", age);
command.Parameters.AddWithValue("@Id", id);
command.ExecuteNonQuery();
}
Console.WriteLine("Data updated.");
}
static void DeleteData(SQLiteConnection connection, int id)
{
using (SQLiteCommand command = new SQLiteCommand(
"DELETE FROM Users WHERE Id=@Id;", connection))
{
command.Parameters.AddWithValue("@Id", id);
command.ExecuteNonQuery();
}
Console.WriteLine("Data deleted.");
}
}
请注意,上述示例假设你已经安装了 System.Data.SQLite 包,并且在项目目录中创建了一个名为 sample.db 的 SQLite 数据库文件。在实际应用中,你需要根据自己的需求修改数据库文件路径和连接字符串。
这个示例演示了如何创建表、插入数据、查询数据、更新数据和删除数据。你可以根据具体的应用场景和需求进行修改和扩展。
出处:https://www.cnblogs.com/hanbing81868164/p/17963377
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式