我正在使用 Visual Studio 2008 使用 C# 开发 Windows Mobile 6.5 应用程序,它连接到 SQL Server CE 数据库。
我使用此代码插入行,每列的值与一个 textBox 字符串相关:
namespace GesTPL
{
public partial class Form4 : Form
{
public Form4()
{
InitializeComponent();
}
public Form RefToForm1 { get; set; }
static String pathDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
static String pathDB = System.IO.Path.Combine(pathDir, "releve.sdf");
static String connectionString = string.Format(@"DataSource={0}", pathDB);
SqlCeConnection connection = new SqlCeConnection(connectionString);
private void Form4_Load(object sender, EventArgs e)
{
connection.Open();
}
private void button_Fermer_Click_1(object sender, EventArgs e)
{
this.RefToForm1.Show();
this.Close();
}
private void button_OK_Click_1(object sender, EventArgs e)
{
if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox5.Text == "")
{
MessageBox.Show("Fill in all the information first!");
}
else
{
SqlCeCommand cmd = new SqlCeCommand("INSERT INTO compteur(numeroCompteur, idGeographique, abonne, police) VALUES(@numeroCompteur, @idGeographique, @abonne, @police)", connection);
cmd.Connection = connection;
cmd.Parameters.AddWithValue("@numeroCompteur", textBox1.Text);
cmd.Parameters.AddWithValue("@idGeographique", textBox2.Text);
cmd.Parameters.AddWithValue("@abonne", textBox3.Text);
cmd.Parameters.AddWithValue("@police", textBox5.Text);
try
{
int affectedrows = cmd.ExecuteNonQuery();
if (affectedrows > 0)
{
MessageBox.Show("Data added successfully!");
}
else
{
MessageBox.Show("Failed to add data!");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
}
}
问题是修改仅应用于模拟器中的数据库,而不.sdf
应用于我项目中的数据库文件。