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
Hello, I was trying blazer with sqlite3 and it seems the statement to fetch the tables doesn't work. As a consequence preview table here is empty:
It seems the statement used isn't valid for sqlite. From what I've seen, this one works:
SELECT name FROM sqlite_master where type = 'table'
There are also no schemas in sqlite, and for the result to work you have to do result.rows.map(&:first).sort instead of &:second. I'm wondering, was this working before?
The text was updated successfully, but these errors were encountered:
Hello, I was trying blazer with sqlite3 and it seems the statement to fetch the tables doesn't work. As a consequence preview table here is empty:
It seems the statement used isn't valid for sqlite. From what I've seen, this one works:
There are also no schemas in sqlite, and for the result to work you have to do
result.rows.map(&:first).sort
instead of&:second
. I'm wondering, was this working before?The text was updated successfully, but these errors were encountered: