The SQL statement is
SELECT Consumption_DateTime, Consumption FROM Meter_Consumption WHERE Meter_ID = ?
where ? is a valid Meter_ID number obtained from a HTML form. I can get the recordset to display in a table.
The column schema for the table Meter_Consumption is
Meter_ID (int, not null) Consumption_DateTime (datetme, not null) Consumption (decimal(16,5), not null) Target (decimal(16,5), not null) Interpolated (bit, not null) Meter_Consumption_ID (PK, int, not null)
Therefore the column it's having problem with is DECIMAL. Is this not numeric? Can I only use integer values in my graphs?
The operating system is Vista Home Premium and all regional settings are set to UK. That means using decimal point for decimals and comma for thousands. The application MUST be run under UK settings for other reasons like recognising dates.
The actual SQL database is 50MB in size. How / where should I post it?
thanks
Julian
|
|
|