执行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();
        }

 

执行SQL查询脚本,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。