BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

BDE vs ADO

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder Databases (SQL Servers)
View previous topic :: View next topic  
Author Message
Cenk
Guest





PostPosted: Fri Aug 04, 2006 5:51 pm    Post subject: BDE vs ADO Reply with quote



Can anyone tell me pros & cons?

thanks
Back to top
DarМo Alejandro Guzik
Guest





PostPosted: Fri Aug 04, 2006 7:00 pm    Post subject: Re: BDE vs ADO Reply with quote



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





PostPosted: Fri Aug 04, 2006 7:07 pm    Post subject: Re: BDE vs ADO Reply with quote



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





PostPosted: Fri Aug 04, 2006 7:12 pm    Post subject: Re: BDE vs ADO Reply with quote

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





PostPosted: Fri Aug 04, 2006 7:16 pm    Post subject: Re: BDE vs ADO Reply with quote

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





PostPosted: Fri Aug 04, 2006 7:16 pm    Post subject: Re: BDE vs ADO Reply with quote

MS SQL Server 2000
Back to top
Viatcheslav V. Vassiliev
Guest





PostPosted: Fri Aug 04, 2006 9:17 pm    Post subject: Re: BDE vs ADO Reply with 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.

//------------------------------------------
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





PostPosted: Sun Aug 06, 2006 11:53 pm    Post subject: Re: BDE vs ADO Reply with quote

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





PostPosted: Mon Aug 07, 2006 2:49 am    Post subject: Re: BDE vs ADO Reply with 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
Viatcheslav V. Vassiliev
Guest





PostPosted: Mon Aug 07, 2006 1:14 pm    Post subject: Re: BDE vs ADO Reply with quote

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





PostPosted: Mon Aug 07, 2006 1:16 pm    Post subject: Re: BDE vs ADO Reply with quote

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
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder Databases (SQL Servers) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.