0

我正在尝试使用简单的 SQLite 数据库开发一个简单的应用程序。我是 C# 新手,所以我可能错过了一些明显的东西。当我运行以下代码时,它返回错误:

SQL 逻辑错误或缺少数据库。没有这样的表:客户 (编辑:是的,我已经在数据库中创建了该表,我使用 sqlite 命令提示符执行/确认了这一点

这是我的代码:

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SQLite;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Text;
using System.Windows.Forms;

namespace TestPersonDatabase
{
public partial class DBconnection : Form
{
    SQLiteDatabase sqliteDb = new SQLiteDatabase();

    public DBconnection()
    {
        InitializeComponent();
    }

    // Using SQLite
    private void btnInsert_Click(object sender, EventArgs e)
    {

        Dictionary<String, String> data = new Dictionary<String, String>();
        data.Add("CustomerId", this.fieldInsertId.Text);
        data.Add("FirstName", this.fieldInsertFName.Text);
        data.Add("LastName", this.fieldInsertLName.Text);
        data.Add("MobileNumber", this.fieldInsertDob.Text);

        try 
        {
            sqliteDb.Insert("Customer", data);
        }
        catch(Exception error)
        {
            MessageBox.Show(error.Message);
        }
    }
}


class SQLiteDatabase
{    String dbConnection;

public SQLiteDatabase()
{
    dbConnection = "Data Source=" + (global::TestPersonDatabase.Properties.Resources.database);
}


    public bool Insert(String tableName, Dictionary<String, String> data)
{
    String columns = "";
    String values = "";
    Boolean returnCode = true;
    foreach (KeyValuePair<String, String> val in data)
    {
        columns += String.Format(" {0},", val.Key.ToString());
        values += String.Format(" '{0}',", val.Value);
    }
    columns = columns.Substring(0, columns.Length - 1);
    values = values.Substring(0, values.Length - 1);
    try
    {
        this.ExecuteNonQuery(String.Format("insert into {0}({1}) values({2});", tableName, columns, values));
    }
    catch (Exception fail)
    {
        MessageBox.Show(fail.Message);
        returnCode = false;
    }
    return returnCode;
}

显然,上面的代码是两个不同的类放在一起。只是让您更容易阅读。

好像找不到数据库文件。但我似乎已经正确地将它链接起来(它在解决方案资源中)。任何帮助将不胜感激,因为我有点难过!谢谢 :)

4

2 回答 2

2

您从未打开过您的 sql 连接尝试:

  dbConnection.Open();  //Initiate connection to the db
于 2013-01-24T13:42:01.790 回答
0

看起来您没有创建表。

在输入任何数据之前,您需要使用以下内容创建表:

this.ExecuteNonQuerySQL("CREATE TABLE Customers(CustomerID INTEGER PRIMARY KEY, sPassword TEXT, CustomerName TEXT);");

创建表格后,您拥有的插入代码应该可以正常工作。

于 2013-01-24T13:59:23.190 回答