4
Answers

How to prepare the XML file by using Database server

SIVA

SIVA

13y
1.7k
1
Hi All,
I have database with some table like
DNo DName Location Employees
10 IT Hyd 15 
20 Sales Bangalore 29
----------------With some more records----------------

My requirement is now i want to send this datasource to somewhere in the form of XML file.
So We can't prepare again the XML file for those records
Is there any alternate solutions or tool to generate the XML file by using Database/Table

Can you tell me the process....
Answers (4)
0
Satyapriya Nayak

Satyapriya Nayak

NA 53k 8m 13y
Hi Siva,


Try this...

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
    </div>
    <asp:GridView ID="GridView1" runat="server">
    </asp:GridView>
    <asp:Button ID="btnsave" runat="server" onclick="btnsave_Click"
        Text="Save to Xml" />
    </form>
</body>
</html>



using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
    string connStr = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
    SqlCommand com;
    SqlDataAdapter sqlda;
    DataSet ds;
    string str;
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            BindGrid();
        }
    }
    protected void BindGrid()
    {
        SqlConnection con = new SqlConnection(connStr);
        con.Open();
        str = "select * from employee";
        com = new SqlCommand(str, con);
        sqlda = new SqlDataAdapter(com);
        con.Close();
        ds = new DataSet();
        sqlda.Fill(ds, "employee");
        GridView1.DataSource = ds;
        GridView1.DataMember = "employee";
        GridView1.DataBind();
    }
    protected void btnsave_Click(object sender, EventArgs e)
    {
        BindGrid();
        ds.WriteXml("d:\\employee.xml");
        Response.Write("Records saved as xml");
    }
}


Thanks
If this post helps you mark it as answer
Accepted
1
nilesh chaudhari

nilesh chaudhari

NA 24 0 13y
hi, if you using the sqlserver 2005 or above you can use following query for generating xml from database select Dno,DName,Location,Employess from Tbl for xml auto; this query will automatically create the xml formated output
0
SIVA

SIVA

NA 842 555.6k 13y
Nice sharing
Thank you
0
SIVA

SIVA

NA 842 555.6k 13y
Hey fine with that its working properly
& is we need to copy & paste the content to another file
or else
Where we will get the output XML file
can you tell me the path