如何在预先存在的数据库(SQLite数据库)上使用C#查询?

时间:2014-03-30 00:00:44

标签: c# sql database sqlite

我遇到了一个问题,我的C#代码正在创建一个全新的数据库,而不是使用预先存在的数据库。然后我的程序运行错误,程序无法找到表插入信息,即使预先存在的数据库有表,因为代码本身正在查看新表。这是我的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Finisar.SQLite;

namespace WestSlope
{
    public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        SQLiteConnection sqlite_conn;
        SQLiteCommand sqlite_cmd;
        //SQLiteDataAdapter sqlite_datareader;

        sqlite_conn = new SQLiteConnection("DataSource=ClientLogDB.db;Version=3;New=True;Compress=True;");

        //open conection
        sqlite_conn.Open();

        //create sql commands
        sqlite_cmd = sqlite_conn.CreateCommand();

        //Let SQLite command know query is known
        sqlite_cmd.CommandText = "INSERT INTO ASAM (ASAMone, ASAMtwo, ASAMthree, ASAMfour, ASAMLim, ASAMLimEX) VALUES ('Had to call', 'Reffered', 'Had to call', 'Watched', 1 , 'Injured legs');"
;

        //execute query
        sqlite_cmd.ExecuteNonQuery();











        sqlite_conn.Close();
    }
  }
}

代码应该做的是当用户按下按钮时程序将信息保存到预先存在的数据库中;但是,正如您所看到的,该程序正在创建一个新数据库,而不是使用预先存在的数据库。

1 个答案:

答案 0 :(得分:0)

在连接字符串中使用new=false来使用现有数据库文件。 以下应该是连接字符串:

sqlite_conn = new SQLiteConnection("DataSource=ClientLogDB.db;Version=3;New=False;Compress=True;");