Re: D5 with ADO
- From: "David Cornelius" <notgiven@xxxxxxxxxxx>
- Date: Mon, 26 Sep 2005 15:08:14 -0700
> I was looking at that... I downloaded Adonis and I'm having trouble.
> I'm just not ADO savvy ... yet and there is no help.
>
> Is DeerSoft intuitive or will I be stuck in the same spot?
I found it to be pretty simple. But it does help to be somewhat familiar
with ADO and the parameters it needs because the help file is very sparse.
However, there is a demo application that comes with the library.
Basically, you get 4 components: DMaster, DTable, DQuery, and DUpdateQuery.
DMaster is the "connection" component. So all you do is set
DMaster.Connection := MyConnStr; and DMaster.Connected := True; and you're
connected to the database via ADO (assuming you have the right parameters
set in MyConnStr, of course). If you need to build the connection string
using the standard multi-page ADO Connection builder, just call the
DConnectionEditor.Execute function.
Then you set DTable.Master := DMaster and you have your ADO Table component
ready. Likewise with DQuery and DUpdateQuery.
There are some nice utililty functions in one of the units, DUtils.pas--most
of which have nothing to do with ADO (like converting a number to Roman
Numeral string). It's worth downloading just for this free code (although
some of it is now obsolete with newer versions of Delphi).
It comes with packages for Delphi versions 4 through 7.
--
David Cornelius
http://CorneliusConcepts.com
.
- Follow-Ups:
- Re: D5 with ADO
- From: Craig Leidy
- Re: D5 with ADO
- References:
- D5 with ADO
- From: Bala
- Re: D5 with ADO
- From: David Cornelius
- Re: D5 with ADO
- From: Craig Leidy
- D5 with ADO
- Prev by Date: Re: How format float in TDBText using ADO??
- Next by Date: Re: DeerSoft, Adonis, or Borland ???
- Previous by thread: Re: D5 with ADO
- Next by thread: Re: D5 with ADO
- Index(es):
Relevant Pages
|