连接到数据库在数据输入之前关闭

时间:2015-05-29 07:28:09

标签: c# visual-studio sql-server-ce compact-database

我正在使用Visual Studio 2008,使用Microsoft Server Compact 3.5,该脚本是为Windows Mobile 6.5.3 Professional编写的。

我有一个连接到数据库文件的小表单脚本,在将数据输入表单后,当您选择按钮时,数据应该更新或将输入数据写入数据库。

在我的脚本中的某处,我在将数据放入数据库之前关闭连接。

数据库连接成功的连接!当我运行脚本生成器时,我没有收到任何错误。 Windows移动模拟器上的消息是:“ExecuteNonQuery需要一个开放且可用的连接。连接的当前状态是关闭的。”

如您所见,我是Visual Studio的新手。

这是Form脚本:

using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlServerCe;

namespace testdbconnection
{
public partial class Form1 : Form
{
    public SqlCeConnection cn = new SqlCeConnection(@"Data Source = C:\Users\...\test.sdf");

    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        try
        {
            cn.Open();
        }
        catch (SqlCeException ex)
        {
            MessageBox.Show(ex.Message);
            Application.Exit();
        }
    }

    private void TextBoxes_TextChanged(object sender, EventArgs e)
    {
        if (textBox1.Text != "" && textBox2.Text != "")
        {
            button1.Enabled = true;
        }
        else
        {
            button1.Enabled = false;
        }
    }

    private void button1_Click(object sender, EventArgs e)
    {
        SqlCeCommand cm = new SqlCeCommand("INSERT INTO tblUsers(userName, age) VALUES (@userName, @age)", cn);
        cm.Parameters.AddWithValue("@userName", textBox1.Text);
        cm.Parameters.AddWithValue("@age", textBox2.Text);

        try
        {
            int affectedRows = cm.ExecuteNonQuery();

            if (affectedRows > 0)
            {
                MessageBox.Show("Insert success!");
                textBox1.Text = "";
                textBox2.Text = "";
            }
            else
            {
                MessageBox.Show("Insert failed!");
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }

}

}

1 个答案:

答案 0 :(得分:0)

 private void button1_Click(object sender, EventArgs e)
    {
using (cn)
{

        SqlCeCommand cm = new SqlCeCommand("INSERT INTO tblUsers(userName, age) VALUES (@userName, @age)", cn);
        cm.Parameters.AddWithValue("@userName", textBox1.Text);
        cm.Parameters.AddWithValue("@age", textBox2.Text);

        try
        {
cn.open();
            int affectedRows = cm.ExecuteNonQuery();

            if (affectedRows > 0)
            {
                MessageBox.Show("Insert success!");
                textBox1.Text = "";
                textBox2.Text = "";
            }
            else
            {
                MessageBox.Show("Insert failed!");
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }
}