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 an analysis generating a record type (int list) and I'm dumping it into an SQLite database. When I read it out I see an integer which I assume is an index into the record table. However I don't see any record table in the generated sqlite database? Is this expected?
sqlite3 tmp1.sqlite
SQLite version 3.42.0 2023-05-16 12:36:15
Enter ".help" for usage hints.
sqlite> .tables
R _R __SymbolTable
sqlite> select * from _R;
3
sqlite> select * from __SymbolTable;
sqlite> select * from R;
3
sqlite>
The text was updated successfully, but these errors were encountered:
I have an analysis generating a record type (int list) and I'm dumping it into an SQLite database. When I read it out I see an integer which I assume is an index into the record table. However I don't see any record table in the generated sqlite database? Is this expected?
To reproduce you can use the following sample:
The resulting database:
The text was updated successfully, but these errors were encountered: