I neet to apply 'LIKE' filter to integer field:
client_id LIKE '%65%'
But error occurs: "Could not convert variant of type (String) into type (Double)"
Filter with integer field and LIKE
-
jkuiper_them
- Posts: 28
- Joined: Thu 20 Dec 2007 14:48
What you trying to do is not logical and isn't an iso standard of SQL.I neet to apply 'LIKE' filter to integer field:
client_id LIKE '%65%'
But error occurs: "Could not convert variant of type (String) into type (Double)"
The option LIKE is implemented for search on strings, so you can simular founded records. For integers, floats, decimals, and dates the option BETWEEN will be used. Or set your integerfield ti a stringfield. It's your choice.