我正在使用带有 Microsoft Server Compact 3.5 的 Visual Studio 2008,并且该脚本是为 Windows Mobile 6.5.3 Professional 编写的。
我有一个连接数据库文件的小表单脚本,在将数据输入到表单后,当您选择按钮时,数据应该更新或将输入数据写入数据库。
在我的脚本中的某个地方,我在将数据放入数据库之前关闭了连接。
连接数据库说连接成功!当我运行脚本生成器时,我没有收到任何错误。windows mobile 模拟器上的消息是:“ExecuteNonQuery 需要一个打开且可用的连接。连接的当前状态是关闭。”
如您所见,我是 Visual Studio 的新手。
这是表单脚本:
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);
}
}
}
}