前言:在上學期選擇專業時候,選擇的是網際網路(還有物聯網),這學期相關課程便是使用c#完成乙個管理系統;最近的作業是完成乙個對資料庫操作類,運算元據庫?雖然是很簡單的乙個作業,但也是懵逼了很久,在網上找了些教程但越看越懵(c#學的不紮實,差不多忘完了),又看老師給的資料,也是不行,但後來兩者的對對比學習,也是有點點點的眉目,搞了半個下午的東西還是好好記錄下吧.
1.檢視=》伺服器資源管理器
2./資料連線(右鍵)=》新增連線
3.點伺服器名(會自動重新整理,選擇自己的伺服器)=》選擇相應的資料庫名稱=》確定
4.點選剛才連線的資料庫,右鍵=》屬性
5.然後有個連線字串(複製下來)
編寫內容:
7.資料庫操作**:補充:
增刪改:executenonquery()返回受影響行數(返回行數有細節,建議搜搜看一下裡面的坑,我這個菜鳥就先這樣,還有其他的呢)
查:executequery() 返回查詢內容
using注:以上為部分內容為個人見解,如有錯誤,還請斧正。system;
using
system.collections.generic;
using
system.configuration;
using
system.data;
using
system.data.sqlclient;
using
system.linq;
using
system.text;
using
system.threading.tasks;
namespace
dal
public
static
intmyexecnonquery(string sql)
rowsaffected =mysqlcmd.executenonquery();
return
(rowsaffected);}}
}
c 字串連線
string name nihao string spa string str str 常量字串 kowin 常量字串不能直接相加,報錯 str 常量字串 name kowin 可在兩常量字串中間或開頭加變數字串即可 cout cout int n 10 char num 10 str1 str1 ...
C 字串連線
c 字串連線常用的四種方式 stringbuilder string.format list。1.的方式 string sql update tablename set int1 int1.tostring int2 int2.tostring int3 int3.tostring where id...
連線資料庫字串
system.data.sqlclient 命名空間下有個類 sqlconnectionstringbuilder 可以幫助我們維護鏈結字串。這個類對我們下面的需求場景很有幫助。persist security info false integrated security true initial ...