C#连接sqlserver数据库

 

       当在C#语言中,连接sql数据库的时候,常用到sqlconnection建立与数据库的连接。 语法如下:

       String sqlcon = "***";//这里是一个字符串,具体跟数据库的验证方式有关。


 

//sql server 身份验证 连接字符串

private string ConnstrSqlServer = "server=服务器名称;uid=登录名称;pwd=登录密码;database=数据库名称";

 

//windows 身份验证连接字符串

private string ConnstrWindows = "server=服务器名称;database=数据库名称;Trusted_Connection=SSPI";


 

       SqlConnection connection = new SqlConnection(sqlcon);

 

例如:

SqlConnection connection = new SqlConnection("server=(local);database=dotNET_lab;Trusted_Connection=SSPI");

//windows验证方式 。

SqlConnection connection = new SqlConnection("server=(local);uid=sa;password=sa;database=dotNET_lab");

//混合验证方式 。

 

然后,


            try {

                connection.Open();

                SqlCommand command = new SqlCommand("select count(*) from admin where username='"+username+"' and password='"+password+"'",connection);

                SqlDataReader reader = command.ExecuteReader();

                while(reader.Read())

                {

 

                    n = reader.GetInt32(0);//n是在之前定义的,如果n>0,显然就存在这样一个用户。                  

 

                }

 

                //Console.WriteLine(reader.GetString(1));

            }

            catch(SqlException ex) {

                Console.WriteLine(ex.Message);

            }

            finally {

                connection.Close();

            }

 


 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值