Here is my table structure:
CREATE TABLE WAVEFORM
(
ID INTEGER NOT NULL,
"ReadingID" INTEGER NOT NULL,
"WaveFormReadings" VARCHAR(8192) CHARACTER SET UNICODE_FSS NOT NULL,
CONSTRAINT INTEG_2 PRIMARY KEY (ID)
);
I put a CSV list of double values into the WaveFormReadings column. I can fetch the readings but when I query the table FlameRobin displays no data for the WaveFormReadings.