RE: SQL Server xml and SQLDataReader

2003-01-16 Thread David L. Penton
>From a previous post of mine on the asp 15seconds list: You can use a CROSS JOIN for that. Here is a simplistic way to do this: select "tables"."xml" , "table"."name" , "column"."name" from sysobjects "table" inner join syscolumns "column" on "table"."id" = "column"."id" cr

RE: SQL Server xml and SQLDataReader

2003-01-16 Thread Patrick Steele
t; Subject: SQL Server xml and SQLDataReader > > > I have a stored proc in SQL Server 2000 that returns data in an xml > structure. I was hoping that I could read the results > directly into an xml > document in ASP.Net > > Such as --- > > 1) > Select D

SQL Server xml and SQLDataReader

2003-01-16 Thread Todd Pull
I have a stored proc in SQL Server 2000 that returns data in an xml structure. I was hoping that I could read the results directly into an xml document in ASP.Net Such as --- 1) Select Date,Time,Vendor,Amount From History For Xml Auto, Elements 2) ASP.Net page SqlDataReader SqlDataResults