Re: TADODataset VERY Slow With MS SQL
From: Brian Bushay TeamB (BBushay_at_Nmpls.com)
Date: 12/16/03
- Next message: Andy Mackie: "Re: MS SQL Server ADO datatype error"
- Previous message: Kevin Frevert: "Re: TADODataset VERY Slow With MS SQL"
- In reply to: Dod Crane: "TADODataset VERY Slow With MS SQL"
- Next in thread: Lluis Olle: "Re: TADODataset VERY Slow With MS SQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 15 Dec 2003 23:32:26 -0600
> I am trying to preserve at least portions of my old application in
>TTable form to avoid a complete rewrite of the application, which is very
>large and complex. I understand I will have to make changes where I used to
>do setranges and at least some filters but I was hoping to use TADODataset
>with the same table names as my old Delphi 1 tables and keep
>...FieldByName('fieldname')....
>code unchanged where possible.
> As my Provider when I set up my TADOConnection option I am using ->
> 'Microsoft OLE DB Provider for SQL Server'....should I be using some
>other driver which would speed things up?
There is no other provider that will give you any speed improvement. SQL
servers are not designed to preform the kind of sequential access you are
currently doing. If you follow the recommendations in the other replies to your
message you can pick up some speed impalements but for good performance you will
need two rewrite your application to do most of the work with Queries on the
server
-- Brian Bushay (TeamB) Bbushay@NMPLS.com
- Next message: Andy Mackie: "Re: MS SQL Server ADO datatype error"
- Previous message: Kevin Frevert: "Re: TADODataset VERY Slow With MS SQL"
- In reply to: Dod Crane: "TADODataset VERY Slow With MS SQL"
- Next in thread: Lluis Olle: "Re: TADODataset VERY Slow With MS SQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|