esp_arduino_sqlite3_lib icon indicating copy to clipboard operation
esp_arduino_sqlite3_lib copied to clipboard

parser stack overflow

Open andrecarralero opened this issue 5 years ago • 0 comments

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

andrecarralero avatar May 25 '20 15:05 andrecarralero