Click to See Complete Forum and Search --> : Recordet fetching


joy@work
September 17th, 1999, 11:01 PM
I am working with VB 6.0 and ADO 2.0 with back-end Database as ORACLE 8.
I want fetch data from an Oracle Table in a particular range ,say 200 records into a Recordset Object. The table has approx. 43,000 rows.
i.e., I have to load first 200 record, then next 200 and so on ........... without closing the Recordset for subsequent fetching.

CAN ANY BODY HELP ME OUT ?
THANKS IN ADVANCE.

Arun Sahoo
September 23rd, 1999, 12:21 AM
If you will use pagesize property of ADODB.Recocrset then this may solve the problem

santulan
September 23rd, 1999, 12:32 AM
SELECT TOP 200 * from ..............
This may help you dear :-)


Santulan

joy@work
September 24th, 1999, 11:56 PM
hello
I haven't Ever Seen Select TOP statement In ANSI SQL , Could you able give me the Code of the SQL statement
Bye