在SQL CE数据库中添加一行?

时间:2013-08-30 17:26:28

标签: c# sql insert sql-server-ce

我一直在尝试为SQL CE和&添加一行。什么都行不通我通过谷歌搜索在SO或其他网站上找到了很多东西,但无济于事。

下面是我目前的代码。

它编译并执行没有任何问题,但没有任何内容添加到表中,也没有抛出任何异常。

有人可以为此提供解决方案吗?

string conString = Properties.Settings.Default.TestConnectionString;

            using (SqlCeConnection connect = new SqlCeConnection(conString))
            {
                connect.Open();

                string text = "UsernameTest";
                string pass = "PasswordTest";

                using (SqlCeCommand command = new SqlCeCommand("insert into MyTable values (@Username, @Password)", connect))
                {
                    command.Parameters.AddWithValue("@Username", text);
                    command.Parameters.AddWithValue("@Password", pass);
                    command.ExecuteNonQuery();
                }
            }

请不要评论以纯文本格式存储密码,这只是一个测试。

0 个答案:

没有答案