如何让用户在查询“Visual Studio 2012”中输入值& “SQL 服务器”
我是 Visual Studio 的新人,我想让用户在查询中输入一个值
,即搜索我将使用的员工
Select * From Employee Where ID = (i want the user to enter the value here)
我已经连接了数据库 我知道我可以从文本框中获取值,但我真的不知道如何直接将该值放入查询中并立即调用它
I 'm new At visual studio and i want to let the user enter a value into the query
i.e search for an employee I'll use
Select * From Employee Where ID = (i want the user to enter the value here)
I already connected the database
and I know I can get the value from a text box but i really don't know how to put that value in the query directly and call it immediately
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参数化相对简单。
Parameterizing is relatively simple.