码迷,mamicode.com
首页 > 数据库 > 详细

Ado.Net 连接数据库

时间:2014-07-22 22:41:54      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:blog   os   数据   io   cti   re   

     try
            {
                //using 用于对资源进行回收,实现了IDisposible借口类才能用。
                using(SqlConnection conn=new SqlConnection("Data Source=.;Initial Catalog=HGPersonnel;User Id=sa;Password=123;"))
                {
                    conn.Open(); //打开连接
//通过连接创建一个向数据库发命令(Command)对象。 using (SqlCommand cmd = conn.CreateCommand()) { //CommandText 要执行的sql语句, cmd.CommandText = "Insert into tb_user(name,age)value(‘123‘,‘123‘)";
cmd.COmmandText="Insert into tb_user(name,age)output inserted.id value(‘123‘,‘123‘)";//插入数据并且输出刚插入数据的id
cmd.ExecuteNonQuery();//ExecuteNonQuery 执行
 cmd.ExecuteScalar()//用来执行只有一行一列的返回值的sql语句 } } } catch (Exception) { }

  

Ado.Net 连接数据库,布布扣,bubuko.com

Ado.Net 连接数据库

标签:blog   os   数据   io   cti   re   

原文地址:http://www.cnblogs.com/fang645421992/p/3860179.html

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