export to CSV

  • Thread starter Thread starter mcnewsxp
  • Start date Start date
M

mcnewsxp

could i get an example of passing some SQL code to return a recordset that
gets exported to CSV.
also, same thing but populates a way to view the data before exporting.

tia much,
mcnewsxp
 
Private Sub ExportDatasetToCsv(ByVal MyDataSet As DataSet)

Dim str As New StringBuilder

For Each dr As DataRow In MyDataSet.Tables(0).Rows

For Each field As Object In dr.ItemArray

str.Append(field.ToString & ",")

Next

str.Replace(",", vbNewLine, str.Length - 1, 1)

Next



Try

My.Computer.FileSystem.WriteAllText("C:\temp\testcsv.csv",
str.ToString, False)

Catch ex As Exception

MessageBox.Show("Write Error")

End Try

'Write the String to the Csv File

'myWriter.WriteLine(myString)

'Clean up
'myWriter.Close()


End Sub
End Class
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

export local report to csv 1
export to csv 1
dependent dropdownlists 1
check for null boolean 1
Bundle csv files 5
Exporting calendar in csv file 2
How to export from Access to CSV? 8
Export to csv 6

Back
Top