parser stack overflow
Hi, I am trying to query with joins or subqueries and is returning the message "parser stack overflow", are there any limitations? because using Db Browser for SQLite it works normally. I can make simple queries, but every time I try to use join or subquery it doesn't work.
Query example
select channels.channel, channels.label, channels.GPIO, hard.model from channels join hard on hard.modelId = channels.modelId
Table channels select channels.* from channels
Callback function called: modelId = 1 channel = ch_1 label = Azul Royal GPIO = 2 channelId = 1
Table hard select hard.* from hard
Callback function called: model = WRLed-Creed label = Lum.Teste serialNumber = 0000001 version = 1 hash = WsYl6akT1aP0W2lv3 modelId = 1
Thank you