May I come back with a new question (still concerning the parameters sent to the server)
1°) With sqlite3, if I send an sql request, I get a correct response :
View attachment 117848
2°) If my B4A Client send a similar request with ONE question mark in the SQL command,
it works
Dim params() As String = Array As String("1984")
Dim cmd As DBCommand = CreateCommand("select_double", params)
with this line in "config properties"
3°) BUT if I send a request with TWO question marks
Dim params() As String = Array As String("TrackTitre","1984")
Dim cmd As DBCommand = CreateCommand("select_double", params)
with this line in "config properties"
the server does not find the value and returns nothing
Is there a limitation for the number of question marks with SQLite ?
If you could help