Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating an app with an embedded db

Status
Not open for further replies.

minckle

Programmer
Mar 17, 2004
142
GB
hi

dont know if this is possible

i currently develop apps in delphi using mysql as a backend database. this means when i want to put the app onto another computer it needs to have mysql installed.

is there a way where i can create an app with the database embedded into it, or where the database is stored in a seperate file but the other computer doesn't need any extra drivers or software

basically what i want to finish up with is an install cd with the app and db, and the user doesn't need to install any 3rd party drivers or software

any help or advice would be grateful
 
I would dare suggest what you're asking is a bit restrictive. You could always store your data in a text file - there's no extra drivers needed for that.

Otherwise, I'd suggest using the ADO components and an Access database. You would need to have Jet installed on the computer though. This is installed by default on Windows XP, and can be downloaded and installed automatically by your install program for other operating systems.
 
How about using Installshield (bundled with Delphi) to create a setup.exe that installs MySQL and your application?

Simon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top