基于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);
            }
        }

程序运行结果

相关推荐
YaenLi1 分钟前
MySQL 安装部署
linux·数据库·mysql
乄北城以北乀14 分钟前
一.MySQL程序简介
数据库·mysql
pchmi26 分钟前
C# OpenCV机器视觉:骨架细化
开发语言·opencv·c#
炭烤毛蛋32 分钟前
Ubuntu 磁盘修复
linux·数据库·ubuntu
代码代码快快显灵36 分钟前
Redis之秒杀活动
数据库·redis·缓存·秒杀活动
范纹杉想快点毕业1 小时前
XML通过HTTP POST 请求发送到指定的 API 地址,进行数据回传
xml·c语言·开发语言·数据结构·c++·python·c#
Ma_si1 小时前
python 如何调整word 文档页眉页脚
python·c#·word
一水鉴天2 小时前
为AI聊天工具添加一个知识系统 之27 支持边缘计算设备的资源存储库及管理器
数据库·人工智能·前端框架
Libby博仙2 小时前
.net core 为什么使用 null!
javascript·c#·asp.net·.netcore
白白白白纸呀2 小时前
ADO.NET知识总结6---SqlDataAdapter桥接器
开发语言·c#·.net