基于C#+SQLite开发数据库应用的示例

SQLite数据库,小巧但功能强大;并且是基于文件型的数据库,驱动库就是一个dll文件,有些开发工具

甚至不需要带这个dll,比如用Delphi开发,用一些三方组件;数据库也是一个文件,虽然是个文件,但却

具有关系型数据库的大多数特征,查询语句也是长得基本一样,所以对应学习数据库操作很方便。

比起前微软的Access数据库那只能说,SQLite强大的太多。

在 Visual Studio 中,可以通过以下步骤安装:

打开 Visual Studio,点击 "工具" -> "NuGet 包管理器" -> "管理解决方案的 NuGet 包" - 在搜索框中输入 "SQLite",然后安装 "System.Data.SQLite" 包。

打开VS,新建一个.NET项目,选择 C# Windows 桌面,Windows窗体应用(.NET Framework)

界面上拖放相应控件

关键事件代码 如下

cs 复制代码
        private void button8_Click(object sender, EventArgs e)
        {

            string dataSource = "test.db"; // 数据库文件名
            // 连接数据库
            using (SQLiteConnection connection = new SQLiteConnection($"Data Source={dataSource};Version=3;"))
            {
                connection.Open(); // 打开连接

                // 创建表
                string createTableQuery = "CREATE TABLE IF NOT EXISTS Customers (Id INTEGER PRIMARY KEY, Name TEXT, Age INT,Phone TEXT)";
                using (SQLiteCommand createTableCommand = new SQLiteCommand(createTableQuery, connection))
                {
                    createTableCommand.ExecuteNonQuery(); // 执行创建表的SQL语句
                }

                // 插入数据
                string insertDataQuery = "INSERT INTO Customers (Name, Age, Phone) VALUES (@Name, @Age, @Phone)";
                using (SQLiteCommand insertDataCommand = new SQLiteCommand(insertDataQuery, connection))
                {
                    insertDataCommand.Parameters.AddWithValue("@Name", "John"); // 设置参数值,避免SQL注入
                    insertDataCommand.Parameters.AddWithValue("@Age", 25);
                    insertDataCommand.Parameters.AddWithValue("@Phone", "123456");
                    insertDataCommand.ExecuteNonQuery(); // 执行插入数据的SQL语句
                }

                // 查询数据
                string selectDataQuery = "SELECT * FROM Customers";
                using (SQLiteCommand selectDataCommand = new SQLiteCommand(selectDataQuery, connection))
                {
                    using (SQLiteDataReader reader = selectDataCommand.ExecuteReader())
                    {
                        while (reader.Read())
                        {
                            int id = Convert.ToInt32(reader["Id"]); 
                            string name = Convert.ToString(reader["Name"]);
                            int age = Convert.ToInt32(reader["Age"]);
                            string phone = Convert.ToString(reader["Phone"]);
                            Console.WriteLine($"ID: {id}, Name: {name}, Age: {age}, Phone: {phone}");
                        }
                    }
                }

                SQLiteCommand sqlCommand = new SQLiteCommand("select * from Customers", connection);
                sqlCommand.ExecuteNonQuery();

                DataTable dataTable = new DataTable("Customers");
                SQLiteDataAdapter sqlAdapter = new SQLiteDataAdapter(sqlCommand);
                sqlAdapter.Fill(dataTable);

                dataGridView1.DataSource = dataTable.DefaultView;
                sqlAdapter.Update(dataTable);
            }
        }

程序运行结果

相关推荐
我最厉害。,。29 分钟前
Windows权限提升篇&数据库篇&MYSQL&MSSQL&ORACLE&自动化项目
数据库·mysql·sqlserver
远方160934 分钟前
20-Oracle 23 ai free Database Sharding-特性验证
数据库·人工智能·oracle
SteveDraw36 分钟前
C++动态链接库封装,供C#/C++ 等编程语言使用——C++动态链接库概述(总)
开发语言·c++·c#·封装·动态链接库
GoodStudyAndDayDayUp1 小时前
初入 python Django 框架总结
数据库·python·django
Kookoos1 小时前
性能剖析:在 ABP 框架中集成 MiniProfiler 实现性能可视化诊断
后端·c#·.net·abp vnext·miniprofiler
@大嘴巴子2 小时前
MySQL知识回顾总结----数据库基础
数据库·mysql
lubiii_2 小时前
SQL手工测试(MySQL数据库)
数据库·mysql·web安全·网络安全
凌辰揽月2 小时前
Web后端基础(基础知识)
java·开发语言·前端·数据库·学习·算法
想你依然心痛2 小时前
数据库入门:从原理到应用
数据库
阿翰3 小时前
自动 GitHub Readme 20 种语言翻译平台 - OpenAiTx 开源免费
c#·.net