I am writing an application which will create the .csv file. I am using C# and SQL server.
I want to write a csv file by reading database records.
we use conventional methods, like reading the database records and putting it into table. After that, we read records row by row from datatable and write into file.
any other way to write .csv file , like when we get the records into data set we can directly write into .csv file ?
I just the below code form this link Getting data from an oracle database as a CSV file (or any other custom text format)
Needs["DatabaseLink`"]
conn = OpenSQLConnection[JDBC["mysql","hostname/dbname"], Username->"user", Password->"secret"]
Export["file.csv", SQLSelect[conn, "MyTable"]]
Can use something like this in .net ? Is there any shortcut ?
Exportfunction in .NET? – Marek Grzenkowicz Dec 28 '12 at 8:50