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'm trying to run the executeSQL method using the sqlite dialect. I've tested a number of queries that each work using the default dialect but fail when I set the dialect to "SQLITE".
constquery='SELECT my_field FROM my_table'// This succeedsconstnormalQueriedLayer=dataset.executeSQL(query)// This failsconstsqliteQueriedLayer=dataset.executeSQL(query,null,'SQLITE')
The error simply states:
Error executing SQL
at Error (native)
Does node-gdal support the SQLITE dialect out of the box? I noticed that the SQLite driver isn't one of the bundled drivers, so does that mean that the SQLITE dialect isn't supported?
The text was updated successfully, but these errors were encountered:
I'm trying to run the
executeSQL
method using the sqlite dialect. I've tested a number of queries that each work using the default dialect but fail when I set the dialect to "SQLITE".The error simply states:
Does node-gdal support the SQLITE dialect out of the box? I noticed that the SQLite driver isn't one of the bundled drivers, so does that mean that the SQLITE dialect isn't supported?
The text was updated successfully, but these errors were encountered: