C 對資料庫的新增 刪除和修改

2021-08-03 01:44:06 字數 679 閱讀 9857

string str = "server=no1;database=supermarket;integrated security=true";

sqlconnection con = new sqlconnection(str);

con.open();

先建立資料庫連線並開啟

更新:sqlcommand cmd = new sqlcommand();//new乙個sql的命令

cmd.commandtext = "update food set foodnum='"+sheng+"' where foodid='" + bh + "'";//設定他的內容,要進行的操作

cmd.connection = con;//設定它的連線,為上面的con

cmd.executenonquery();//執行 /*

上面的**也可以寫成:sqlcommand cmd = new sqlcommand("update food set foodnum='"+sheng+"' where foodid='" + bh + "'",con);*/

新增和刪除同理,只需要更改commandtext 的內容,並進行操作

對資料庫的修改和刪除

事務 transaction 由查詢和更新語句的序列組成。sql標準規定當一條sql語句被執行,就隱式地開始了乙個事務。下列sql語句之一會結束乙個事務 commit work 提交當前事務,也就是將該事務所做的更新在資料庫中持久儲存。在事務被提交後,乙個新的事務自動開始。rollback work...

MySQL對資料庫及表的修改和刪除詳解

一 對資料庫修改 1.刪除資料庫 drop database 資料庫名字 二 對一張表修改 1.重新命名一張表 rename table 原名 to 新名字 alter table 原名 rename to 新名 2.刪除一張表 drop table 表名字 三 對一列修改 1.增加一列資料 alt...

mysql 修改新增刪除資料庫

新建資料庫表 create table mytablename id bigint 20 not null auto increment comment 記錄id columnname1 char 1 default null comment 使用者角色 0 普通使用者 1 vip使用者 colum...