G
Guest
I have a page that has javascript that relies on being able to read an XML
file. This XML file contains data that will be used to place markers on a
Google Map object.
The data in this file is held in a SQL 2005 database.
What Im unsure about is the most efficient way to get the data from my SQL
server and then saved as an XML file on the webserver.
I have create a stored procedure that returns the required data as xml
SELECT
addr_int_ID ID,
addr_txt_Lat Lat,
addr_txt_Lng Lng,
addr_int_Type "Type",
addr_txt_Tooltip Tooltip,
addr_txt_BubbleText BubbleText
from
GMarker
for xml auto
How do I dump this into a file in my web directory?
file. This XML file contains data that will be used to place markers on a
Google Map object.
The data in this file is held in a SQL 2005 database.
What Im unsure about is the most efficient way to get the data from my SQL
server and then saved as an XML file on the webserver.
I have create a stored procedure that returns the required data as xml
SELECT
addr_int_ID ID,
addr_txt_Lat Lat,
addr_txt_Lng Lng,
addr_int_Type "Type",
addr_txt_Tooltip Tooltip,
addr_txt_BubbleText BubbleText
from
GMarker
for xml auto
How do I dump this into a file in my web directory?