执行SQL查询脚本_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 执行SQL查询脚本

执行SQL查询脚本

 2014/5/20 21:09:58  四脚朝天  博客园  我要评论(0)
  • 摘要:staticvoidMain(string[]args){Console.WriteLine("输入用户编号:");stringcusernum=Console.ReadLine();Console.WriteLine("输入用户名:");stringcusername=Console.ReadLine();stringconnString=@"DataSource=.;InitialCatalog=lh0216;UserID=sa;pwd=Founder123"
  • 标签:执行 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();
        }

 

上一篇: Fiddler Post Debug 下一篇: 执行SQL存储脚本
发表评论
用户名: 匿名