假设我们有一个查询,我将添加一些参数
对于Ex:
SqlCommand cmd = new SqlCommand("insert into Table(UserName, Password, Country, Email) values(@UserName, @Password, @Country, @Email)", con);
cmd.Parameters.AddWithValue("@UserName", User.UserName);
cmd.Parameters.AddWithValue("@Password", User.Password);
cmd.Parameters.AddWithValue("@Country", User.Country);
cmd.Parameters.AddWithValue("@Email", User.Email);
像这样。
现在我想显示查询结果,如
insert into Table(UserName, Password, Country, Email)
values('Test1', '1234', 'India', 'abc@xyz.com')
显示的值将是我添加的参数。
据我所知php
当我们回显查询并在浏览器中运行它时,我们将得到参数的值。但这里有什么可能性吗?。
答案 0 :(得分:1)
SQL命令文本和参数分别发送到sql server,你不能使用SqlCommand获取最终的sql语句,尝试使用SQL Profiler。