本文介绍了在sql中使用查询中的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想编写一个查询来从db中选择数据我希望使用textbox1.text我该怎么做?

支持使用此查询的多次使用我希望写命令Qcommand.Parameters.AddWithValu命令。

我的代码是:

  string  commandText =  从moshtari中选择id,其中mobile = + textBox3.Text; 

Qcommand.CommandText = commandText;
Qcommand.CommandType = CommandType.Text;
object k = Qcommand.ExecuteScalar();



这个我看到错误。

解决方案



i want to write a query to select data from db in condition i want to use textbox1.text how can i do this??
in favor of multy time using of this query i want to write witoth Qcommand.Parameters.AddWithValu command.
my code is:

string commandText = "select id from moshtari where mobile="+ textBox3.Text;
               
                Qcommand.CommandText = commandText;
                Qcommand.CommandType = CommandType.Text;
                object k = Qcommand.ExecuteScalar();


with this i see error.

解决方案



这篇关于在sql中使用查询中的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 10:27