C #: SQL FilterExpression - отсутствует исключение операнда - PullRequest
2 голосов
/ 03 февраля 2012

Я следую за кодом поиска в списке ЗДЕСЬ . У меня проблемы с использованием FilterExpression. Я получаю исключение:

Отсутствует операнд после оператора 'Name' ... Когда возникает исключение, FilterExpression = "ГДЕ имя как 'spencer%'"

Исключение возникает в следующем коде:

protected void BindSGVData()
        {
            //hfSearchText has the search string returned from the grid.
            if (hfSearchText.Value != "")
            {
                RidesSQL.FilterExpression = " WHERE " + hfSearchText.Value; //EXCEPTION HERE!
            }
            DataView dv = (DataView)RidesSQL.Select(new DataSourceSelectArguments());
            //hfSort has the sort string returned from the grid.
            if (hfSort.Value != "")
            {
                dv.Sort = hfSort.Value;
            }

            RideSGV.DataSource = dv;
            try
            {
                RideSGV.DataBind();
            }
            catch (Exception exp)
            {
                //If databinding threw exception bcoz current page index is > than available page index
                RideSGV.PageIndex = 0;
                RideSGV.DataBind();
            }
            finally
            {
                //Select the first row returned
                if (RideSGV.Rows.Count > 0)
                    RideSGV.SelectedIndex = 0;
            }
        }

Есть мысли?

1 Ответ

6 голосов
/ 03 февраля 2012
RidesSQL.FilterExpression = " WHERE " + hfSearchText.Value; //EXCEPTION HERE!

Должно быть:

RidesSQL.FilterExpression = hfSearchText.Value; // NO EXCEPTION HERE!
...