Thursday, September 28, 2006

Dump all records of a table to a xml file

Dim MyConn, SQL_query,ResultSet,myName

'Open database connection
Set MyConn = CreateObject("ADODB.Connection")
MyConn.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=C:\emp.mdb"

'Define the SQL query
SQL_query = "SELECT * FROM employee"

'Execute the query and store results in ResultSet
Set ResultSet = MyConn.Execute(SQL_query)
ResultSet.MoveFirst

Dim fso, tf
Set fso = CreateObject("Scripting.FileSystemObject")
Set tf = fso.CreateTextFile("c:\testfile.txt", True)
' Write a line with a newline character.
tf.WriteLine("<xml>")

While NOT ResultSet.EOF
tf.WriteLine("<employee>")
For each x in ResultSet.fields
tf.WriteLine(addXmlTag(x.name,x.value))
next
tf.WriteLine("</employee>")
ResultSet.MoveNext
WEND
tf.WriteLine("</xml>")

'Release resources
ResultSet.close
MyConn.close

Function addXmlTag(colName,colValue)
startTag ="<"
endTag=">"
addXmlTag = startTag & colName & endTag & colValue & startTag & "/" & colName & endTag
End Function

11 Comments:

Blogger Aasha said...

Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care.As always, we appreciate you confidence and trust in us.

Digital Marketing Company in Chennai
Digital Marketing Services in Chennai

1:58 AM  
Blogger sindhu said...

I must thank you for the efforts you have put in penning this site. I am hoping to check out the same high-grade content by you later on as well. In truth, your creative writing abilities has inspired me to get my own, personal blog now..

SMO Services Chennai

3:39 AM  
Anonymous Anonymous said...

Great information shared in this blog. Helps in gaining concepts about new information and concepts.Awsome information provided.Very useful for the beginners.
SEO company in Chennai

3:56 AM  
Blogger Unknown said...

wow amazing post.The key points you mentioned here related to maintenance of car is really awesome.Checking all fluid levels,changing oil and of course the regular service of the car which is necessary to maintain our vehicle.Thank you for the information.

car cleaning services in mumbai

5:34 AM  
Blogger Shalini said...

Superb. I really enjoyed very much with this article here. Really it is an amazing article I had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article.thank you for sharing such a great blog with us. expecting for your.

seo company in india

9:08 PM  
Blogger jeslin said...

Thank you for sharing the information here. Its much informative and really i got some valid information. You had posted the amazing article.

Car Wash Services in Mumbai

11:30 PM  
Blogger Alvina sarah said...

I do trust all of the concepts you’ve presented on your post. They’re really convincing and will definitely work. Still, the posts are too brief for newbies. May you please extend them a little from subsequent time?Also, I’ve shared your website in my social networks.
Best Accountants Melbourne
Accountants Melbourne
Melbourne Accountants

1:51 AM  
Blogger Mahalya sree said...

I simply want to tell you that I’m all new to blogs and truly liked you’re blog site. Very likely I’m likely to bookmark your site .You surely come with remarkable articles. Cheers for sharing your website page.
Restaurant Interior Designers in Chennai
Turnkey Interiors in Chennai
Corporate Office Interiors in Chennai

11:19 PM  
Blogger Nicole Bolton said...

Really, these quotes are the holistic approach towards mindfulness. In fact, all of your posts are. Proudly saying I’m getting fruitfulness out of it what you write and share. Thank you so much to both of you.
RFID Solutions
Athletic Management Software
CCTV Camera Dealers in Chennai
CCTV Camera Installation in Chennai

5:34 AM  
Blogger Nikisha said...

Great.Nice information.It is more useful and knowledgeable. Thanks for sharing keep going on.. and I expect more blog like this
Digital Marketing Company in India
Seo Company in India

2:13 AM  
Blogger Unknown said...

I got lot of information from your blog. Thanks for sharing...
SAP MM Training in Chennai

3:45 AM  

Post a Comment

<< Home