SQLite Forum

What would be the recommended way to hold an array of ~600 double values?
Login
```
create table Records
(
   row integer not null,
   col integer not null,
   value numeric,
   primary key (row, col)
) without rowid;
```