我正在使用C#VS 2010开发一个应用程序.
我正在使用CE数据库.我从数据库中搜索字符串的代码是
string con = @"Data Source=|DataDirectory|\Database\Acadamy.sdf;Persist Security Info=False";
string cmd = "SELECT sid AS [Student ID], sname AS [Student Name], contact AS [Contact No] FROM Student WHERE sname LIKE '%'+ @name +'%'";
var dt = new DataTable();
using (var a = new SqlCeDataAdapter())
{
try
{
a.SelectCommand = new SqlCeCommand();
a.SelectCommand.Connection = new SqlCeConnection(con);
a.SelectCommand.CommandType = CommandType.Text;
a.SelectCommand.CommandText = cmd;
a.SelectCommand.Parameters.AddWithValue("@name", textBox1.Text);
a.Fill(dt);
dataGridView1.DataSource = dt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Run Code Online (Sandbox Code Playgroud)
当我输入任何字符串时,as我收到错误System.FormatException: @name : as - Input string was not in a correct format.
什么是错误无法修复.
从sql命令文本中删除引用.
参数对于帮助避免混淆也是非常宝贵的.
将通配符字符添加到参数值....
string cmd = "SELECT sid AS [Student ID], sname AS [Student Name], " +
"contact AS [Contact No] FROM Student WHERE sname LIKE @name";
....
a.SelectCommand.Parameters.AddWithValue("@name", "%" + textBox1.Text + "%") ;
Run Code Online (Sandbox Code Playgroud)