viniciussanchez / dataset-serialize

JSON to DataSet and DataSet to JSON converter for Delphi and Lazarus (FPC)
MIT License
645 stars 156 forks source link

Feat export format #196

Closed michel-silva closed 1 year ago

michel-silva commented 1 year ago

Created 2 new properties to export: 1 - ExportLargeintAsString: I use a snowflake implementation to generate ids and this is a number int64 like 197688037381099177. In browsers and javascript this int64 is broken. I created a property to export largeint like a string; 2 - ExportBCDAsFloat: In my firebird database I have a column decimal 10,3. In json 5.00 is write 5.0000000000000000E+001. I create a property to export BCD as float number.