Link to home
Start Free TrialLog in
Avatar of idok
idok

asked on

Consult

Starting a new database app in Delphi/CppBuilder - which DB tech would you recommend? Using BDE? Using ODBC drivers? ADO? MS Access?
Avatar of kretzschmar
kretzschmar
Flag of Germany image

hmm, that depends, what your app must do.

i would prefer a sql-database (Oracle, mssql,...)
with a bde-replacement driver.

tell more about, for what you need it.
just for beginning use paradox,
its properly supported by delphi and bde.

meikl
Avatar of kotik
kotik

For a small multiuser application I would recommend the Interbase SQL server.

Regards,
Kot.
If you've got Delphi 5, I would use ADO to connect to your database.  I find it's fairly easy to set up.

Instead of fiddling around, setting up BDE alias' on every computer (or writing the code to dreate them), Delphi has a wizard which creates an ADO connection string for you, and then just connects to the DB.  Great simple stuff that just works.

See ya,
Dave.
Avatar of idok

ASKER

ADO is just the connection, which non-Client/Server (file based) DB would you recommend as base?

Wouldn't MS-access be a good choice for a file-based DB?
ASKER CERTIFIED SOLUTION
Avatar of Dhag
Dhag

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial