码迷,mamicode.com
首页 > 其他好文 > 详细

Command

时间:2014-12-08 10:29:24      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:on   ad   as   new   sql   ld   c   command   query   

command可以直接执行

SqlCommand myCmd=new SqlCommand(sqlstr,myConn);

myCmd.ExecuteNonQuery();

也可以存在DataSet中

SqlCommand myCmd=new SqlCommand(sqlstr,myConn);

SqlDataAdapter myDa= new SqlDataAdapter(myCmd);

DataSet myDs=new Dataset();

myDa.fill(myDs);

Command

标签:on   ad   as   new   sql   ld   c   command   query   

原文地址:http://www.cnblogs.com/handsomer/p/4150441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!