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
I have code like this
local query = [[
SELECT ID, NAME FROM table
WHERE NAME LIKE '%?%'
]]
local data, err = conn:execute(query, name)
Instead of receiving a record i got an empty table
The same query works when using dbeaver(for example)
The text was updated successfully, but these errors were encountered:
I have code like this
local query = [[
SELECT ID, NAME FROM table
WHERE NAME LIKE '%?%'
]]
local data, err = conn:execute(query, name)
Instead of receiving a record i got an empty table
The same query works when using dbeaver(for example)
The text was updated successfully, but these errors were encountered: