我正在使用Datagridview来插入,更新和删除数据。我想要的是,在每次应用更改时都会出现一个消息对话框,显示我所做的命令。
例如,在mySql Workbench中,每次应用更改时,总会有一个消息对话框,显示您所做的所有命令。
实施例。 假设这将是消息框。
UPDATE `inventorysystem`.`tblprices` SET `Price`='2000' WHERE `PriceID`='1';
DELETE FROM `inventorysystem`.`tblprices` WHERE `PriceID`='2';
DELETE FROM `inventorysystem`.`tblprices` WHERE `PriceID`='3';
INSERT INTO `inventorysystem`.`tblprices` (`PriceID`, `Price`, `StockModel`) VALUES ('5', '999', 'Rio fun');
INSERT INTO `inventorysystem`.`tblprices` (`PriceID`, `Price`, `StockModel`) VALUES ('6', '500', 'ruby');