You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: