Question
How can a xml file be created from a database?

Answers

To generate an xml database response from a server the user simply has to write the code and save it as an .asp file on the server.

The code:
<%
response.ContentType = "text/xml"
set conn=Server.CreateObject("ADODB.Connection")
conn.provider="Microsoft.Jet.OLEDB.4.0;"
conn.open server.mappath("/db/database.mdb")

sql="select fname,lname from tblGuestBook"
set rs=Conn.Execute(sql)

response.write("")
response.write("")
while (not rs.EOF)
response.write("")
response.write("" & rs("fname") & "")
response.write("" & rs("lname") & "")
response.write("
")
rs.MoveNext()
wend

rs.close()
conn.close()
response.write("
")
%>   Your Comment




More Software Questions..
What is the inputsplit in map reduce software?

What is software configuration management?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?

What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?

Which oracle package is used to manage the oracle lock management services?

What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?

What is marker interface?

What types of partitioning are there for BW?



Search
Can you Answer!!
  • Q What is the vector of Chagas’ disease? How is the disease transmitted?
  • Q How will you merge elements in a sequence
  • Q What do you understand by a block structured language? Is C a block structured Language? If yes, using an example, illustrate how a block can be defined in C.
  • Q How do you do number comparison in shell scripts?
  • Q In the TV cartoon series "The Simpsons", what is the name of the Indian convenience store owner who lives in the same street as the Simpsons?
  • Q Can you extend native libraries in CodeIgniter?
  • Q What is Fault Contract in WCF?
  • Q Write the steps of reflective teaching.
  • Q An applicant under the age of 21, shall be admitted to examination before the Board for licensure to practice chiropractic in California. (A)True (B)False
  • Q What you know about seo ?
  • Q What is the difference between 8085 microprocessor and a 8086 microprocessor?