Saving curves data in sqlite3

Wondering how to save curves in sqlite3?
The number of points that defines each curve is different, could be from two to couple of thousands.
For the moment I saved the data in a dictonary: curves = {curve1:[x1,y1, . . ., xn, yn], curve2:[x1,y1, . . ., xn, yn]}. This works fine but the data is memory.
I am looking to save them in a table like this: curve TEXT, x-list REAL, y-list REAL.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.