I would like to insert NaN values ββinto a SQLite database.
I have an Ent table with Id, StringColumn and DoubleColumn (cannot be nullable), and I'm trying to use the following SQL statement:
INSERT INTO Ent (Id, StringColumn, DoubleColumn) VALUES (1, 'NaN test', ????)
I do not know what to put in place of '????' for storing NaN.
I access the database using System.Data.SQLite - perhaps this also matters?
source
share