parse floats

This commit is contained in:
brianc 2010-10-18 22:17:58 -05:00
parent bf87006bc3
commit a69d9fecaa

View File

@ -11,10 +11,17 @@ var intParser = {
fromDbValue: parseInt
};
var floatParser = {
fromDbValue: parseFloat
};
Query.dataTypes = {
20: intParser,
21: intParser,
23: intParser
23: intParser,
1700: floatParser,
700: floatParser,
701: floatParser
};
var p = Query.prototype;