How can I conver this to procedure to work with custom paging. I used .net and It is really difficult to find a sample code in the web for oracle and .net. I really apprciate if you point me to the place where i can find a sample code
for oracle and .net for custom paging.
I am trying to create a custom paging for my .net page. I am using oracle 10g. thank you for your help.
SELECT cdescr, clocat1, cprojnum, cont
FROM (SELECT /**+ first_row(25) */
cdescr, clocat1, cprojnum,
ROW_NUMBER () OVER (ORDER BY contid) cont
FROM proposal)
WHERE cont BETWEEN :n AND :m