| View previous topic :: View next topic |
| Author |
Message |
Cenk Guest
|
Posted: Fri Aug 04, 2006 5:51 pm Post subject: BDE vs ADO |
|
|
Can anyone tell me pros & cons?
thanks |
|
| Back to top |
|
 |
DarМo Alejandro Guzik Guest
|
Posted: Fri Aug 04, 2006 7:00 pm Post subject: Re: BDE vs ADO |
|
|
Hi!
Principal cons for BDE is that is not supported any more, and you won't
see any updates. Pros are that there is a lot of experience on BDE, but
also in ADO.
We are just getting rid of BDE ourselves, and trying ADO instead
(testing in a very small application)
Are these your only options?
Cenk wrote:
| Quote: | Can anyone tell me pros & cons?
thanks
|
--
DarМo Alejandro Guzik (El TМo Borracho)
http://tioborracho.tripod.com
e-mail: daguzik (AT) dc (DOT) uba.ar
ICQ : 8389493 |
|
| Back to top |
|
 |
Cenk Guest
|
Posted: Fri Aug 04, 2006 7:07 pm Post subject: Re: BDE vs ADO |
|
|
| Quote: | Are these your only options?
|
Honestly, i m trying to get rid of BDE and i need suggestions of other
options. First thing came to my mind was ADO. |
|
| Back to top |
|
 |
MarkR Guest
|
Posted: Fri Aug 04, 2006 7:12 pm Post subject: Re: BDE vs ADO |
|
|
What is your target database? This has a bearing on ways to connect
"Cenk" <cenk1536 (AT) yahoo (DOT) com> wrote in message
news:44d354cd (AT) newsgroups (DOT) borland.com...
| Quote: |
Are these your only options?
Honestly, i m trying to get rid of BDE and i need suggestions of other
options. First thing came to my mind was ADO.
|
|
|
| Back to top |
|
 |
MarkR Guest
|
Posted: Fri Aug 04, 2006 7:16 pm Post subject: Re: BDE vs ADO |
|
|
OLE-DB - or look for thirdparty tools. like
If you are using SQL Server 2000, then try http://www.crlab.com/sdac/
I use MyDAC and it is bloody brilliant! |
|
| Back to top |
|
 |
Cenk Guest
|
Posted: Fri Aug 04, 2006 7:16 pm Post subject: Re: BDE vs ADO |
|
|
| MS SQL Server 2000 |
|
| Back to top |
|
 |
Viatcheslav V. Vassiliev Guest
|
Posted: Fri Aug 04, 2006 9:17 pm Post subject: Re: BDE vs ADO |
|
|
Use ADO if you need simple solution. If you need advanced features such as
bulk-copy rowsets, try third-party components; try OLEDB Direct
(http://www.oledbdirect.com), it is not as easy as ADO but faster and allows
access to low-level OLEDB interfaces.
//------------------------------------------
Regards,
Vassiliev V. V.
http://www.managed-vcl.com - using .Net objects in Delphi for Win32 +
ADO.Net
http://www.oledbdirect.com - The fastest way to access MS SQL Server,
MS Jet (Access) and Interbase (through OLEDB)
"Cenk" <cenk1536 (AT) yahoo (DOT) com> сообщил/сообщила в новостях следующее:
news:44d356d8 (AT) newsgroups (DOT) borland.com...
| Quote: | MS SQL Server 2000
|
|
|
| Back to top |
|
 |
Vladimir Stefanovic Guest
|
Posted: Sun Aug 06, 2006 11:53 pm Post subject: Re: BDE vs ADO |
|
|
| Quote: | Use ADO if you need simple solution. If you need advanced
features such as bulk-copy rowsets, try third-party components;
try OLEDB Direct (http://www.oledbdirect.com), it is not as easy
as ADO but faster and allows access to low-level OLEDB interfaces.
|
I need a possibiliy to interrupt the execution of some query.
That is not possible (AFAIK) with ADO. Does you solution has
such a possibility?
--
Best Regards,
Vladimir Stefanovic |
|
| Back to top |
|
 |
Cenk Guest
|
Posted: Mon Aug 07, 2006 2:49 am Post subject: Re: BDE vs ADO |
|
|
Hi,
Can i use OLEDB with Borland Developer Studio 2006? and can you show me an
example , how to use select and insert statements in OLEDB?
thanks |
|
| Back to top |
|
 |
Viatcheslav V. Vassiliev Guest
|
Posted: Mon Aug 07, 2006 1:14 pm Post subject: Re: BDE vs ADO |
|
|
No. Once query is sent to server, server executes it. You may move query to
separate thread.
//------------------------------------------
Regards,
Vassiliev V. V.
http://www.managed-vcl.com - using .Net objects in Delphi for Win32 +
ADO.Net
http://www.oledbdirect.com - The fastest way to access MS SQL Server,
MS Jet (Access) and Interbase (through OLEDB)
"Vladimir Stefanovic" <antivari (AT) po (DOT) sbb.co.yu> сообщил/сообщила в новостях
следующее: news:44d63aab (AT) newsgroups (DOT) borland.com...
| Quote: | Use ADO if you need simple solution. If you need advanced
features such as bulk-copy rowsets, try third-party components;
try OLEDB Direct (http://www.oledbdirect.com), it is not as easy
as ADO but faster and allows access to low-level OLEDB interfaces.
I need a possibiliy to interrupt the execution of some query.
That is not possible (AFAIK) with ADO. Does you solution has
such a possibility?
--
Best Regards,
Vladimir Stefanovic
|
|
|
| Back to top |
|
 |
Viatcheslav V. Vassiliev Guest
|
Posted: Mon Aug 07, 2006 1:16 pm Post subject: Re: BDE vs ADO |
|
|
OLEDB Direct works with BDS 2006. Installation includes examples, there are
selects and inserts queries there. For example, example SQL Server\1000000
rows shows how to insert and then select 1 000 000 rows in ~10 sec. (10 sec.
for insert and 10 sec. for select, of course, real time depends on concrete
computer).
//------------------------------------------
Regards,
Vassiliev V. V.
http://www.managed-vcl.com - using .Net objects in Delphi for Win32 +
ADO.Net
http://www.oledbdirect.com - The fastest way to access MS SQL Server,
MS Jet (Access) and Interbase (through OLEDB)
"Cenk" <cenk1536 (AT) yahoo (DOT) com> сообщил/сообщила в новостях следующее:
news:44d6640d (AT) newsgroups (DOT) borland.com...
| Quote: | Hi,
Can i use OLEDB with Borland Developer Studio 2006? and can you show me an
example , how to use select and insert statements in OLEDB?
thanks
|
|
|
| Back to top |
|
 |
|