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

数据库第十三章使用ADO.NET访问数据库

时间:2017-10-31 17:40:38      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:esc   nbsp   use   finally   school   command   cal   ini   lin   


string sqlcon="Data Source=.;Initial Calalog=MySchool;User ID=sa;Pwd=.";


Connection:打开数据库连接
程序与数据库沟通的桥梁

SqlConnection con=new SqlConnection(sqlcon);
try
{
//可能发生异常的代码
con.Open();
}
catch(Exception ex)
{
//捕获异常
Console.WriteLine(ex);
}
finally
{
con.Close();
//永远都会被执行
}


Command:向数据库发送命令,提交SQL命令并从数据源中返回结果
string sql="select count(*) from Student where StudentNo=‘"+username+"‘ and LoginPwd=‘"+password+"‘";
//向数据库发送一条SQL语句
SqlCommand command=new SqlCommand(sql,con);
//结果
int count=(int)command.ExecuteScalar();
if(count>0)
{
Console.WriteLine("登录成功");

}else
{
Console.WriteLine("查无此人");
}

 

数据库第十三章使用ADO.NET访问数据库

标签:esc   nbsp   use   finally   school   command   cal   ini   lin   

原文地址:http://www.cnblogs.com/1402380606HZ/p/7762434.html

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