Re: [GENERAL] Web + Slicing/Paging datas

2009-04-28 Thread Allan Kamau
On Tue, Apr 28, 2009 at 2:21 PM, Jasen Betts wrote: > On 2009-04-23, durumdara wrote: >> Hi! >> >> In a mod_py application I wanna write a wrapper that handle all PSQL >> data view with paging/slicing. >> >> For example: >> I have 1.500 records. I wanna show only N (f. ex: 15) records in the >

Re: [GENERAL] Web + Slicing/Paging datas

2009-04-28 Thread Jasen Betts
On 2009-04-23, durumdara wrote: > Hi! > > In a mod_py application I wanna write a wrapper that handle all PSQL > data view with paging/slicing. > > For example: > I have 1.500 records. I wanna show only N (f. ex: 15) records in the > view, other records are accessable with a pager (links): For

Re: [GENERAL] Web + Slicing/Paging datas

2009-04-23 Thread durumdara
Hi! 2009.04.23. 9:23 keltezéssel, John R Pierce írta: durumdara wrote: Hi! In a mod_py application I wanna write a wrapper that handle all PSQL data view with paging/slicing. .. Inserts all records to a temp table. Check the affected rows (as count). Slicing the records. Fetch the slice rec

Re: [GENERAL] Web + Slicing/Paging datas

2009-04-23 Thread John R Pierce
durumdara wrote: Hi! In a mod_py application I wanna write a wrapper that handle all PSQL data view with paging/slicing. .. Inserts all records to a temp table. Check the affected rows (as count). Slicing the records. Fetch the slice records. Destroy temp table. how about KEEPING the data