B4XTable.
I have a problem with searching in the national encoding (Russian) by uppercase characters.
Do you need to configure something ?
Search for any English content in the table - no problem.
Search for lowercase Russian characters - no problem.
I know how to make a hidden column of lowercase content specifically just for search - but this is a strange solution.
Thanks ! Maybe there is a working example ?
Thanks ! I will try to do this ...
Is it possible in the future to make the search support for national characters in B4XTable configurable from my code ?
I'm afraid that my interference with your code may cause harm.
Maybe I am biting more than I can chew here because I know nothing about Cyrillic, but are you looking for B4XTable BuildQuery, something like this:
B4X:
Private Sub btn1_Click
Dim o() As Object = B4XTable1.BuildQuery(False)
Dim s As String ="SELECT * FROM data WHERE c0 LIKE ?" 'c0 is the first column name in the in memory database
o(0)=s
o(1)=Array As String ("%Ме%") 'cyrillic letters
Dim rs As ResultSet = B4XTable1.sql1.ExecQuery2(o(0), o(1))
Do While rs.NextRow
Log(rs.GetString("c0"))
Loop
rs.Close
End Sub