Click here to Skip to main content
15,885,244 members
Articles / Desktop Programming / Windows Forms
Article

XML Reader - Import data from XML file to MSSQL table

Rate me:
Please Sign up or sign in to vote.
2.07/5 (5 votes)
23 Aug 2007CPOL1 min read 44.3K   2.4K   15   5
Import data from a bulky XML file to a MSSQL table.

Introduction

This document describes a simple way of importing data from XML file to a MSSQL table. People involving in data coversion activities can easily use this application to convert their bulky MXL inputs.

Screenshot - Reader.jpg

Overview

The sample project can load an XML file and read it and show it in a data grid view. Then you can write dataset to a MSSQL table. In this article I am describing the way of writing the dataset to a MSSQL table. But you can write the dataset to any type of Databse table.

Using the code

The sample application uses ReadXml method of dataset to read a XML file.

Then you can save these data to a MSSQL data table.

//
// 
SqlConnection myconnection = new SqlConnection();

SqlDataAdapter myda=new SqlDataAdapter();

myconnection.ConnectionString = "Data Source=DHANUSHKA\\SQLEXPRESS;Initial Catalog=mydb;Integrated Security=True";

string strsql = "INSERT INTO Data(name, age)VALUES(@name,@age)";

myconnection.Open();

SqlCommand myinsertcommand = new SqlCommand(strsql, myconnection);

myinsertcommand.Parameters.Add("@name", SqlDbType.VarChar, 15, "name");

myinsertcommand.Parameters.Add("@age", SqlDbType.VarChar, 15, "age");

myda.InsertCommand = myinsertcommand;

myda.Update(myds.Tables["Data"]);

//

When adding parameters to the insert command of data adapter @name and @age are tag names in XML file and "name" and "age" are column names in MSSQL data table.

Points of Interest

One of my friends asked me that he wants to import data from a bulky XML file to a MSSQL table. After few minutes of effort I came up with a nice simple application having few lines of code. And also my friend next to my block, Chamin, helped me on this.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Sri Lanka Sri Lanka
I am Dhanushka Weedagama and I work at Pearson Lanka (pvt) Ltd as a senior software engineer.

Comments and Discussions

 
GeneralXML Reader Pin
abdellaoui13-Aug-08 4:42
abdellaoui13-Aug-08 4:42 
Questionneed help in reading this type of xml schema. Pin
.Net Proffesional9-Oct-07 1:25
.Net Proffesional9-Oct-07 1:25 
AnswerRe: need help in reading this type of xml schema. Pin
william01230-Oct-09 0:08
william01230-Oct-09 0:08 
Hello Logesh,

I am in need of XML programmer. can you please send me your contact details so that i can get in touch with you.

Waiting for your reply.

Thanks
QuestionXML File? Pin
Manjit Dosanjh25-Aug-07 0:07
Manjit Dosanjh25-Aug-07 0:07 
AnswerRe: XML File? Pin
DhanuWeedagam26-Aug-07 17:38
DhanuWeedagam26-Aug-07 17:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.