首页 > 学院 > 开发设计 > 正文

c# 对数据库的操作

2019-11-17 04:07:11
字体:
来源:转载
供稿:网友
 【学习点点滴滴】自己也才学习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();
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表