bestlong / node-red-contrib-mssql-plus

A Node-RED node to read and write to Microsoft MS SQL Databases
MIT License
32 stars 18 forks source link

Decimal truncated #41

Closed Steve-Mcl closed 3 years ago

Steve-Mcl commented 3 years ago

Consider adding support for decimal precision and scale

example... request.addParameter('value', Decimal, 18728.4, { precision: 16, scale: 2 });

Currently, it looks like tedious is defaulting to decimal(18,2) meaning loss of precision.