I'm working on an API runs an SQL query.
The query runs fine when I use hard coded values but when I try to use the same values as parameters the I get this error:
"Failed: Query failed: The column index is out of range: 1, number of columns: 0."
The query is a simple:
SELECT * FROM table WHERE column = '?'
Using the parameters:
{
"column": "value"
}