Answers for "Numeric data type is returned as String"

2

Numeric data type is returned as String

//in app.js
var types = require('pg').types
types.setTypeParser(1700, function(val) {
    return parseFloat(val);
});
Posted by: Guest on May-11-2020

Code answers related to "Numeric data type is returned as String"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language