Board index » delphi » Database choice ???

Database choice ???

Hi all !

I need to develop a software which uses 3 or 4 databases. I want it to be
smallest as possible. Is this possible to use database without using DBE ?
If yes, how or where I can find examples or documentation ? I'd like to use
Paradox or Access....

Thanks alot

 

Re:Database choice ???


Try a look at dbISAM from eversoft.  No BDE, and the database engine
compiles directly into the app.  Robust, supports SQL, and works with all
Delphi native db-aware components.

If your databases are really small, you could also use Pascal's "file of
records" to read/write binary files in the record format of your choice.
You would need to write simple routines to insert/delete/append/find
records.

Quote
Sylvain Lafrance <s...@globetrotter.net> wrote in message

news:xQzi6.118466$Pm2.2239164@news20.bellglobal.com...
Quote
> Hi all !

> I need to develop a software which uses 3 or 4 databases. I want it to be
> smallest as possible. Is this possible to use database without using DBE ?
> If yes, how or where I can find examples or documentation ? I'd like to
use
> Paradox or Access....

> Thanks alot

Re:Database choice ???


Does it work with QuickReport and all native Delphi 4 components ??

"Jack Bober" <j...@ninprodata.com> a crit dans le message news:
96f1ti$ra...@paxfeed.eni.net...

Quote
> Try a look at dbISAM from eversoft.  No BDE, and the database engine
> compiles directly into the app.  Robust, supports SQL, and works with all
> Delphi native db-aware components.

> If your databases are really small, you could also use Pascal's "file of
> records" to read/write binary files in the record format of your choice.
> You would need to write simple routines to insert/delete/append/find
> records.

> Sylvain Lafrance <s...@globetrotter.net> wrote in message
> news:xQzi6.118466$Pm2.2239164@news20.bellglobal.com...
> > Hi all !

> > I need to develop a software which uses 3 or 4 databases. I want it to
be
> > smallest as possible. Is this possible to use database without using DBE
?
> > If yes, how or where I can find examples or documentation ? I'd like to
> use
> > Paradox or Access....

> > Thanks alot

Re:Database choice ???


For a complete list of BDE replacements see:
http://www.kylecordes.com/bag/index.html

"Sylvain Lafrance" <s...@globetrotter.net> schreef in bericht
news:xQzi6.118466$Pm2.2239164@news20.bellglobal.com...

Quote
> Hi all !

> I need to develop a software which uses 3 or 4 databases. I want it to be
> smallest as possible. Is this possible to use database without using DBE ?
> If yes, how or where I can find examples or documentation ? I'd like to
use
> Paradox or Access....

> Thanks alot

Other Threads