Board index » delphi » How do I Restrict number of row fetched from server.
Ozkan DULGER
![]() Delphi Developer |
Wed, 19 May 2004 21:35:37 GMT
|
Ozkan DULGER
![]() Delphi Developer |
Wed, 19 May 2004 21:35:37 GMT
How do I Restrict number of row fetched from server.
I use TTable on the client and MS SQL Server as the server. I want to
restrict number of rows fetched at once and allow application fetch records on demand. (A do not use midas) Is there any way to implement this ? Thanks, |
Walter Prin
![]() Delphi Developer |
Thu, 20 May 2004 01:40:55 GMT
Re:How do I Restrict number of row fetched from server.Using TTable is a *bad* idea against a database server - it is only meant to be used against file based databases. See this article by Wayne Niddery of TeamB: TTables vs. TQuerys The whole reason there is both a TTable and a TQuery component is due to the TTable is specifically designed to work best with table-oriented systems - TQuery is specifically designed to work best with set-oriented databases Some of the things that TTables do that eat time and resources over a With TQuerys, you still need to use them right to get the most out of them, -- Quote"Ozkan DULGER" <ozkan_dul...@yahoo.com> wrote in message Quote> I use TTable on the client and MS SQL Server as the server. I want to |
Walter Prin
![]() Delphi Developer |
Thu, 20 May 2004 07:15:38 GMT
Re:How do I Restrict number of row fetched from server.Hi To answer your question: No. You are apparently using the BDE to access SQL HTH Walter Prins Quote"Ozkan DULGER" <ozkan_dul...@yahoo.com> wrote in message Quote> I use TTable on the client and MS SQL Server as the server. I want to |
1. Question about Interbase and number of rows fetched
2. SQL Server - Fetching multiple rows with cursor (Delphi 4)
3. Restricting number of numbers typed in a cell in TStringGrid
4. SQL Server 6.5 / ADO / TDBGrid and large number of rows
5. Help: How do you know when TQuery is done with it's fetch
6. How do I restrict number of feched rows from server?
7. How can I fetch a range/block of absolute rows from select stmt (for html paging)