我對C#很新,我想創建一個sqlite數據庫連接類。我通過點擊我的項目名稱>添加>類創建了一個新的類文件。我在這個文件中有以下代碼。C#中的sqlite數據庫連接類
問題是我得到的錯誤在每行之後SQLiteDataReader
- 如果我將鼠標懸停在
sqlite_conn
然後它說「......是一個領域,但使用像一個類型」 - 如果我將鼠標懸停在
SQLiteConnection
那麼說......方法必須返回類型 - 如果我將鼠標懸停在
("Data Source=database.db;Version=3;New=True;Compress=True;")
然後它說類型預期
`
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Finisar.SQLite;
namespace learningCsharp
{
class database
{
// We use these three SQLite objects:
SQLiteConnection sqlite_conn;
SQLiteCommand sqlite_cmd;
SQLiteDataReader sqlite_datareader;
// Getting error in every lines after this
// create a new database connection:
sqlite_conn = new SQLiteConnection("Data Source=database.db;Version=3;New=True;Compress=True;");
//open the connection:
sqlite_conn.Open();
// create a new SQL command:
sqlite_cmd = sqlite_conn.CreateCommand();
}
}
你能幫我解決這個問題,並創建一個工作的SQLite數據庫連接類嗎?
您是否嘗試清潔並徹底重建解決方案? –
http://stackoverflow.com/questions/26020/what-is-the-best-way-to-connect-and-use-a-sqlite-database-from-c-sharp可能會幫助您 –