Hello,
I have a little problem I can't solve, here.
with these lines...
'spiChoix' is the name or a column. It can be col1 or col2 etc...
'filtre' is the word I want to find in this column.
The result is null, but I know that my field are correct, the pragma is right.
A syntax can be like this:
Like or = give no result too.
If I don't use a filter like 'LIKE' as
What could be hidden in this case which can be clarified ??
So, I use Sqlite in my apps without any problem, but here, it's a bug ! I lose my reason !
Thanks for answering if anyone have a look, a suggestion.
I have a little problem I can't solve, here.
with these lines...
query in base:
synt="SELECT * FROM bnotes WHERE " & spiChoix & _
" LIKE ('%" & filtre.ToUpperCase & "%' OR '%" & _
filtre.ToLowerCase & "%' OR '%" & filtre & "%')"
curs=Starter.sql1.execquery(synt)
'spiChoix' is the name or a column. It can be col1 or col2 etc...
'filtre' is the word I want to find in this column.
The result is null, but I know that my field are correct, the pragma is right.
A syntax can be like this:
Even if I transform filtre.ToUpperCase to f1 and filtre.ToLowerCase to f2, not result.SELECT * FROM tableNotes WHERE memo LIKE 'PAYS' OR 'pays' OR 'Pays'.
Like or = give no result too.
If I don't use a filter like 'LIKE' as
I have all my lines correctly.SELECT * FROM tableNotes
What could be hidden in this case which can be clarified ??
So, I use Sqlite in my apps without any problem, but here, it's a bug ! I lose my reason !
Thanks for answering if anyone have a look, a suggestion.