使用搜索查询和类似运算符搜索DataGridView

时间:2015-09-21 10:12:22

标签: c#

我想使用搜索查询和DataGridView运算符在like中搜索名称。

 public static DataSet SearchItems(string key)
    {
        string cmd = @"SELECT lt.ledgerId,la.ledgerName FROM ledgertranscationinfo lt  
                                JOIN ledgeraccreation la ON lt.ledgerId = la.ledgerId;                            
                                WHERE la.ledgerName LIKE CONCAT('"
                                + key.Trim() + "','%') ;";
        DataSet ds = MySQL_Helper.GetDataSet(CommandType.Text, cmd, "LedgerAcCreation");
        return ds;
    }

搜索文本时显示错误。请给我正确的文本搜索解决方案。

0 个答案:

没有答案