Re: Set SQL results into an array

2003-01-20 Thread admin
Why don't you write a stored procedure on SQL Server ? Something like create procedure myProc as declare myCurs cursor for your first select that gets the array open myCurs fetch from myCurs into while (@@fetch_status = 0) begin insert into .. fetch next from end

Set SQL results into an array

2003-01-13 Thread Maxime.Gheysen
Hi everybody, I use microsoft SQL server, and XSP pages. I also use ESQL for all my DB commands. I want to insert data with query like INSERT Into blabla (ID) values (MyArray) In this query MyArray is the result of another query. How can I make it? Here is an example : Table : XY Columns : ID,