示例#1
0
        private void btnDelete_Click(object sender, EventArgs e)
        {
            string sql = @"delete Product where ProductID=@ProductID";

            SqlParameter[] para = { new SqlParameter("@ProductID", txtPID.Text) };
            DBHelperSQL.TableChange(sql, para);
            MyShow();
        }
示例#2
0
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            string sql = @"UPDATE [test2009].[dbo].[Product]
                           SET [ProductName] = @ProductName,[SupplierName] =@SupplierName
                         WHERE [ProductID] = @ProductID";

            SqlParameter[] para = { new SqlParameter("@ProductID",    txtPID.Text),
                                    new SqlParameter("@ProductName",  txtPName.Text),
                                    new SqlParameter("@SupplierName", txtSName.Text) };
            DBHelperSQL.TableChange(sql, para);
            MyShow();
        }
示例#3
0
        private void btnAdd_Click(object sender, EventArgs e)
        {
            string sql = @"INSERT INTO [test2009].[dbo].[Product]
                           ([ProductID]
                           ,[ProductName]
                           ,[SupplierName])
                     VALUES(@ProductID,@ProductName,@SupplierName)";

            SqlParameter[] para = { new SqlParameter("@ProductID",    txtPID.Text),
                                    new SqlParameter("@ProductName",  txtPName.Text),
                                    new SqlParameter("@SupplierName", txtSName.Text) };
            DBHelperSQL.TableChange(sql, para);
            MyShow();
        }