sqlite数据库连接类

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数据库连接类吗?

最佳答案

您需要在类构造函数或方法中将行错误。

public class database
{
    // We use these three SQLite objects:
    public SQLiteConnection sqlite_conn;
    public SQLiteCommand sqlite_cmd;
    public SQLiteDataReader sqlite_datareader;

    public database()
    {
         sqlite_conn = new SQLiteConnection("Data Source=database.db;Version=3;New=True;Compress=True;");
         sqlite_conn.Open();
         sqlite_cmd = sqlite_conn.CreateCommand();
     }

}

关于c# - C#中的sqlite数据库连接类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17739583/

10-09 09:09