Dear Anthonio,
is it not possible to use an UPPER() in SET FILTER
SET FILTER TO "UPPER(FIELD) = 'AAA'"
if i use this command:
Error description: Error ADODB.Recordset/16389 E_FAIL: _FILTER
Any Ideas ? In ODBC it works fine...
Regards, Norbert
ADORDD and SE FILTER
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Antonio,Antonio Linares wrote:Norbert,
Try to use UCASE() instead of UPPER()
same problem.
Code: Select all
Error description: Error ADODB.Recordset/16389 E_FAIL: _FILTER
Args:
[ 1] = C UCASE(A_EMAIL) LIKE '%MICROSOFT%'
Stack Calls
===========
Called from TOLEAUTO:_FILTER(0)
Called from ADO_SETFILTER(537)
Called from DBSETFILTER(0)
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: ADORDD and SE FILTER
TryNK wrote:Dear Anthonio,
is it not possible to use an UPPER() in SET FILTER
SET FILTER TO "UPPER(FIELD) = 'AAA'"
if i use this command:
Error description: Error ADODB.Recordset/16389 E_FAIL: _FILTER
Any Ideas ? In ODBC it works fine...
Regards, Norbert
SET FILTER TO UCASE(FIELD) = 'AAA'
EMG