2
Answers

Generate CSV File

Photo of Aniket Narvankar

Aniket Narvankar

1y
500
1

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)