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
Ideally, it should captures all values by using arrays instead of objects:
[[ 1, 2 ]]
In better-sqlite3, we can return arrays instead of objects by enabling the .raw() method. I also see DBeaver can handle this correctly, which means that other client might has a support on this already.
The good news is calling .columns() with the example query would return two columns instead of one so hopefully adding "array mode" on the result can be easily implemented!
Thanks!
The text was updated successfully, but these errors were encountered:
Drizzle Team votes +1, methods like .raw() or being able to provide mode for entire driver instance or per-query basis are essentials for tools like Drizzle to build on top
Running this query in
duckdb-node
:returns:
Ideally, it should captures all values by using arrays instead of objects:
In better-sqlite3, we can return arrays instead of objects by enabling the .raw() method. I also see DBeaver can handle this correctly, which means that other client might has a support on this already.
The good news is calling
.columns()
with the example query would return two columns instead of one so hopefully adding "array mode" on the result can be easily implemented!Thanks!
The text was updated successfully, but these errors were encountered: