Hi,
When I placed the the following SQL query,
SELECT
[ItemID], [Name], [RelDate], [Price], [Status]
FROM
[item_k]
WHERE
[ItemID] IN (" + itemIDs + ")
in gridview custom sql statements, it gets transformed to,
SELECT
ItemID, Name, RelDate, Price, Status
FROM
item_k
WHERE
(ItemID IN ([ + itemIDs + ]))
and when I execute the query the following error is shown
SQL Execution Error
Invalid column name '+ itemIDs+'
what seems to be the problem?
thanks