c# 對資料庫的操作
阿新 • • 發佈:2018-12-30
【學習點點滴滴】自己也才學習c# 所以寫的都是寫簡單的。 就是為了記錄學習的點點滴滴;
所以寫得比較簡。
string id=textbox.text.tostring();
sqlconnection cnn = new sqlconnection( "server=;uid=sa;pwd=1qazwert;database=zaixiantest'');
sqlcommand cmm= new command();
cmm.connection=cnn; cmm.commandtype=commandtype.text;
cnn.open();
cmm.commandtext="select * from yonghu where id='"+id+"'";
sqldataReader myread = cmm.excutereader();
myreader.Read();
text1box.text=myreader["yname"].tostring();
text2.box.text=myreader["ymima"].tostring();