articles

Home / DeveloperSection / Articles / How to Create XML file of Database in C Sharp

How to Create XML file of Database in C Sharp

How to Create XML file of Database in C Sharp

Anonymous User 20080 01-Aug-2010

To create XML file of Database we have to call WriteXml() function of Data Set.

Example
string strConnection = "Server=abc\\SQLEXPRESs;Database=Employee;Trusted_Connection=True";
            SqlConnection con = new SqlConnection(strConnection);
//creating new connection to database Employee
            con.Open();
//opening connection
SqlDataAdapter da = new SqlDataAdapter("select * from employee", con);
//assigning data to DataAdapter according to the query
            DataSet ds = new DataSet();
            da.Fill(ds, "Employee");
//filling dataset.
            ds.WriteXml("C:\\dataEmployee.xml");
//writing XML file of name ‘dataEmployee.xml’ of database
Screen shot

How to Create XML file of Database in C Sharp


xml xml 
Updated 05-Aug-2020
I am a content writter !

Leave Comment

Comments

Liked By