2
Answers

Generate CSV File

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)