![]() |
|
|
+ Search |
![]()
|
May 25th, 2000 21:13
unknown unknown, Rory
Use a join if your database supports it, or make multiple recordsets
..like:
sql1="select * from db1 where ....."
sql2="select * from db2 where ...."
set RS1=Server.CreateObject("ADODB.Recordset")
set RS2=Server.CreateObject("ADODB.Recordset")
RS1.Open sql1, conn
display results ......
RS2.Open sql2, conn
display results ..
Or put all results into a string or loop..and redo them alphabetically
.. there are ways but you'll need to know what you're doing and it could
take some time ..
© 1999-2004 Synop Pty Ltd