欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

如何在C#中實現SQLite基本操作

admin
2024年12月27日 21:35 本文熱度 160

前言

SQLite是一款非常輕量級的關系數據庫系統,以SQL為基礎,并支持多數SQL92標準。由于其輕量、易用和跨平臺特性而被廣泛使用。使用SQLite時,通過訪問數據庫的程序直接從磁盤上的數據庫文件進行讀寫操作。本文探討如何在C#中實現操作SQLite數據庫,主要通過連接數據庫、執行增、刪、改和查等基本操作。

實現操作

1、實現前提

C#實現SQLite數據庫操作需要引用System.Data.SQLite,我們可以通過NuGet包管理器安裝引用它。

Install-Package System.Data.SQLite

SQLite是直接訪問磁盤上的數據庫文件,因此在執行相關操作前,需要創建好SQLite數據庫文件。數據庫名的后綴可以直接指定,甚至沒有后綴都可以。

// 創建數據庫 方式一string dbFilename = string.Format("{0}db{1}{2}", AppDomain.CurrentDomain.BaseDirectory, Path.PathSeparator, "test.db");if (!File.Exists(dbFilename)){    // 創建數據庫文件    FileStream fileStream = File.Create(dbFilename);}
// 創建數據庫 方式二string dbFilename = string.Format("{0}db{1}{2}", AppDomain.CurrentDomain.BaseDirectory, Path.PathSeparator, "test.db");if (!File.Exists(dbFilename)){    // 創建數據庫文件    SQLiteConnection.CreateFile(dbFilename);}

2、連接數據庫

下面代碼段演示如何連接SQLite數據庫:

// 數據庫未設置密碼string connectionString =string.Format("Data Source={0}; Version=3; ",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();}
// 數據庫設置了密碼string connectionString =string.Format("Data Source={0}; Version=3; Password={1};",dbFilename,"123456");// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();}

3、設置數據庫密碼

下面代碼段演示給未設置密碼的數據庫設置密碼:

// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 設置密碼    connection.ChangePassword("123456");}

4、創建數據表

下面代碼段演示在數據庫里創建數據表,如用戶表:

// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 執行SQL的語句    string commandText = "CREATE TABLE IF NOT EXISTS Users (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name VARCHAR(100), Code VARCHAR(100),Password VARCHAR(100))";    // 創建 SQLiteCommand     using (SQLiteCommand command = new SQLiteCommand(commandText, connection))    {        // 執行語句        command.ExecuteNonQuery();    }}

5、增加數據庫表數據

下面代碼段演示往用戶表增加一行數據:

?// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 執行SQL的語句    string commandText = "insert into Users (Name, Code,Password) values (@name, @code,@password)";    // 創建 SQLiteCommand     using (SQLiteCommand command = new SQLiteCommand(commandText, connection))    {        // 設置參數值        command.Parameters.AddWithValue("@name""管理員");        command.Parameters.AddWithValue("@code""admin");        command.Parameters.AddWithValue("@password""pwd123456");        // 執行語句        command.ExecuteNonQuery();    }}

6、修改數據庫表數據

下面代碼段演示修改數據庫表數據,如修改用戶密碼:

// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 執行SQL的語句    string commandText = "update Users SET Password=@password WHERE Code = @code";    // 創建 SQLiteCommand     using (SQLiteCommand command = new SQLiteCommand(commandText, connection))    {        // 設置參數值        command.Parameters.AddWithValue("@code""admin");        command.Parameters.AddWithValue("@password""admin123456");        // 執行語句        command.ExecuteNonQuery();    }}

7、查詢數據庫表數據

下面代碼段演示查詢數據庫表數據,如查詢用戶表數據:

// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 執行SQL的語句    string commandText  = "select * from Users";    // 創建 SQLiteCommand     using (SQLiteCommand command = new SQLiteCommand(commandText, connection))    {        // 執行語句 返回查詢數據        using (SQLiteDataReader reader = command.ExecuteReader())        {            // 輸出數據            while (reader.Read())            {                //                 Console.WriteLine($"ID: {reader["Id"]}, 名稱: {reader["Name"]}, 編碼: {reader["Code"]}");            }        }    }}

8、刪除數據庫表數據

下面代碼段演示刪除數據庫表數據,如刪除用戶表數據:

// 數據庫未設置密碼string connectionString = string.Format("Data Source={0};Version=3;",dbFilename);// 連接數據庫using (SQLiteConnection connection = new SQLiteConnection(connectionString)){    // 打開數據庫連接    connection.Open();    // 執行SQL的語句    string commandText = "delete from  Users where Code = @code";    // 創建 SQLiteCommand     using (SQLiteCommand command = new SQLiteCommand(sql, connection))    {        // 設置參數值        command.Parameters.AddWithValue("@code""admin");        // 執行語句        command.ExecuteNonQuery();    }}

小結

通過上述示例,能夠清晰地了解如何在C#中有效地操作SQLite數據庫,并快速上手??稍诖嘶A上擴展更復雜的功能,并在實際項目中運用。


該文章在 2024/12/28 12:08:16 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2024 ClickSun All Rights Reserved