在文本框中设置自动完成功能

时间:2013-02-25 18:13:14

标签: c# autocomplete

我在Windows窗体应用程序中有一个文本框(名为textbox1)。我有一个名为nn.sdf的数据库,我想将其用作自动完成的源。每当用户向textbox1提供输入时,它都会显示来自数据库的建议,与用户给出的输入文本匹配。所以我将我的代码放入textBox1_TextChanged property.my代码在这里:

 private void textBox1_TextChanged(object sender, EventArgs e)
    {
        AutoCompleteStringCollection namesCollection = new AutoCompleteStringCollection();
        SqlCeConnection con = new SqlCeConnection(@"Data Source=C:\Users\Imon-Bayazid\Documents\nn.sdf");
        con.Open();
        SqlCeCommand cmnd = con.CreateCommand();
        cmnd.CommandType = CommandType.Text;
        cmnd.CommandText = "SELECT top(10)  english FROM dic";        
        SqlCeDataReader dReader;
        dReader = cmnd.ExecuteReader();

        if (dReader.Read())
        {
            while (dReader.Read())
                namesCollection.Add(dReader["english"].ToString());
        }
        else
        {
            MessageBox.Show("Data not found");
        }
        dReader.Close();

        textBox1.AutoCompleteMode = AutoCompleteMode.Suggest;
        textBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
        textBox1.AutoCompleteCustomSource = namesCollection;
    }

但它只显示前10个数据。我知道我在行中有问题

  cmnd.CommandText = "SELECT top(10)  english FROM dic";// english is my column name and dic is my table name   

我不知道cmnd.CommandText应该是什么。我希望每当用户在textbox1中输入任何内容时自动提示。 我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

如您所知,CommandText应该(或可能)是一个SQL语句。请尝试以下

int fetchAmount = 10;
string userInput = "abc";
cmnd.CommandText = string.Format("SELECT top ({0}) english FROM dic WHERE english like '{1}%'",
    fetchAmount.ToString(), userInput);

LIKE是一个比较文本的SQL命令。因此,在您的情况下,您希望文本以用户输入的内容开头的所有结果。

现在在有人接触我的案子之前,我知道这不是最好的办法。直接在SQL语句中输入值会让您对SQL注入完全开放。我强烈建议您学习并实施存储过程以与数据库进行任何交互。