博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
执行SQL查询脚本
阅读量:5170 次
发布时间:2019-06-13

本文共 1529 字,大约阅读时间需要 5 分钟。

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

你可能感兴趣的文章
python request 接口自动化设计
查看>>
hashcode和equals方法详细解析, hashmap对于hashcode方法的使用
查看>>
阅读完教材后的问题
查看>>
14、OpenCV Python 直线检测
查看>>
高级软件工程第二次作业
查看>>
网络流总结
查看>>
以太坊钱包
查看>>
把数组变换成字符串(8)
查看>>
C#预处理器指令【转】
查看>>
docker镜像加速器
查看>>
Ruby module ---模块,组件
查看>>
css设置自适应屏幕高度
查看>>
vs2017添加引用出错:对COM组件的调用返回了错误HRESULT E_FAIL
查看>>
编译原理系列之四 自顶向下语法分析方法
查看>>
SpringBoot配置文件属性值
查看>>
记一次挖洞示例
查看>>
A1113 | Integer Set Partition (25)
查看>>
无监督算法
查看>>
设计模式---003代理模式---【巷子】
查看>>
IBase<T>
查看>>