I've never attempted to store any objects in my SQLite database and doing some searching on the subject didn't help. I'm using VS 2012, the NuGet SQLite DLLs, and C# with .NET 4.5.
Here are the available data types I can see and presumably, use: integer, int, smallint, tinyint, bigint, bit, varchar(50), nvarchar(50), text, ntext, image, money, float, real, decimal, numeric(18,0), char(10), nchar(10), datetime, guid.
I have graph points (x, y) that I must store for each graph. There are a variable amount. I store the values into an ArrayList currently and am having a hard time trying to figure out how to store them...
If I create a dedicated table just for each graph that stores all it's (x, y) points, how do I specify a variable amount of (x, y) coordinates to save within the graph table? Is there an easier way using some third party library? Can anyone else think of another simpler solution perhaps using the technology I currently have available?
Thanks!