Dapper基本增刪改查

2022-01-31 12:17:01 字數 1064 閱讀 4117

說明:

1、在using語句塊中不用dbconnection.open(),因為execute方法中會open,並且在執行完成會close。

2、在ado.net中要手動open,在using語句塊中使用時,可以不用手動close。

public

actionresult select()

return content(""

); }

public

actionresult update());}

return content(""

); }

public

actionresult delete());}

return content("ok"

); }

public

actionresult insert()

str += "

using之後

" +dbconnection.state;

return content("

ok" +str);

//執行結果:

//execute之前closed

//execute之後closed

//using之後closed

}

public

actionresult adonet()

str += "

using command之後:

" +connection.state;

}str += "

using connection之後:

" +connection.state;

return content("

ok" +str);

//執行結果

//executenonquery之後:open

//using command之後:open

//using connection之後:closed

}

mysql 基本增刪改查

mysql是關係型資料庫 關係型資料庫的特點 1,資料時以行和列的形式去儲存的 2,這一行系列的行和列稱為表 3,表中的每一行叫一條記錄 4,表中的每一列叫乙個字段 5,表和表之間的邏輯關聯叫關係 一,基本sql命令 sql命令的使用規則 1,每條命令必須以分號結尾 2,sql命令不區分字母大小寫 ...

SQL 基本增刪改查

1.增 關鍵字 insert insert into 表名 列1,列2 values 值1,值2 例如 insert into test name,age,phone record time values lily 14 13199999999 0019 04 23 00 00 00 2.刪 關鍵字...

增刪改查基本操作

增加 建立資料庫 create database database name 建立資料庫中的表單 create table table name 列1 資料型別,列2 資料型別,列3 資料型別 往表單中新增資料 insert into table name values 1 2 3 刪除 刪除資料庫...