Aniket Narvankar

Aniket Narvankar

  • 524
  • 2.1k
  • 582.4k

Generate CSV File

Mar 8 2024 2:47 PM

There is tblData in SQL which has following column Amount which is numeric

tblData
Amount
50.000000
0.882700
49.370000

have written a code to generate csv file
but in csv file this is coming as
Amount
50
0.8827
49.37
i want 
50.000000
0.882700
49.370000
how can this be done? please guide
streamwritter is used to generate csv


Answers (2)