Welcome.
I have a strange case. The syntax of the query:
A query in SQLManager on the same file passes nicely and shows the results as it wants. Select with omitting the 'group' column if the first character is not a '.'
Unfortunately it does not work in B4J, I get an error
Do the drivers used for SQLite in B4J have limitations?
Has anyone encountered a similar problem?
I have a strange case. The syntax of the query:
SQL:
Dim g As List = DBM.SQLSelect($"select grupa, dateend from film where SUBSTRING (grupa, 1, 1) <> "." group by grupa order by grupa asc"$, Null)
A query in SQLManager on the same file passes nicely and shows the results as it wants. Select with omitting the 'group' column if the first character is not a '.'
Unfortunately it does not work in B4J, I get an error
B4X:
2023-03-02 1124 -> (SQLException) java.sql.SQLException: [SQLITE_ERROR] SQL error or missing database (no such function: SUBSTRING)
Do the drivers used for SQLite in B4J have limitations?
Has anyone encountered a similar problem?