Visual Studio 2008使用表适配器将文本框与数据库表连接

时间:2012-11-09 11:35:58

标签: c# sql visual-studio-2008 windows-mobile

我正在尝试通过表适配器将我的UI元素与数据库表连接起来。我创建了一个查询来将数据插入数据库,没有错误,但数据库没有更新。

private void SaveBtn_Click(object sender, EventArgs e)
        {
            string Bcode = InvTxt1.Text;
            string Cid = customerTxt.Text;
            string s = "notassign";
            DateTime Ctime = DateTime.Now;

            AppDatabase1DataSet ds = new AppDatabase1DataSet();
            AppDatabase1DataSet.orderTableDataTable dt = new AppDatabase1DataSet.orderTableDataTable();
            this.orderTableTableAdapter1.GetData();
            this.orderTableTableAdapter1.InsertQuery(@Bcode, @Cid, @s, @Ctime);
        }

0 个答案:

没有答案