在我的程序中,我需要从数据库中获取值,因此使用 texbox 以便客户端键入任何内容,我可以从数据库中搜索。
我的代码是
SqlCommand sqlcmd = sqlcon.CreateCommand();
sqlcmd.CommandText = "Select distinct transactionName from dbo.tbl where terminalId = " + textBox_cardNumber.Text;
以上不是我的完整代码,但在我的代码中,我使用的是 textbox_cardNumber ...
我想用引号''
它应该像
Select distinct transactionName from dbo.tbl where terminalId = '0097'
所以我的问题是如何获得报价???