执行SQL查询脚本

static void Main(string[] args)
        {
            Console.WriteLine("输入用户编号:");
            string cusernum = Console.ReadLine();

            Console.WriteLine("输入用户名:");
            string cusername = Console.ReadLine();

            string connString = @"Data Source=.; Initial Catalog=lh0216; User ID=sa;pwd=Founder123";
            //出了using括号objConnection类会被自动释放
            using (SqlConnection objConnection = new SqlConnection(connString))
            {
                objConnection.Open();
               
                using (SqlCommand objCmd = objConnection.CreateCommand())
                {
                    objCmd.CommandText = "select * from TBZG where czgbh='" + cusernum + "'" ;
                    using (SqlDataReader objReader = objCmd.ExecuteReader())
                    {
                        //结果集不为空
                        if (objReader.Read())
                        {
                            string cValue = objReader.GetString(objReader.GetOrdinal("czgxm"));
                            //检查手工输入的姓名与数据库中查询的名称是否相同
                            if (cValue == cusername)
                            {
                                Console.WriteLine("你好{0}",cusername);
                            }
                        }
                        else
                        {
                            Console.WriteLine("用户名不存在。");
                        }
                    }
                }
            }            
            Console.ReadKey();
        }

 

转载于:https://www.cnblogs.com/songdl/p/3739524.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值