Avatar of David Smithstein
David Smithstein
Flag for United States of America asked on

Standalone Desktop Database installation options

I want to explore the idea of creating a stand alone version of our main product that can be installed by the end user as a single user system, but I need to figure out how to either make the MySQL installation completely click through, or use another database that would also lend itself to migration to MySQL should the user decide to upgrade to the multi-user client/server system.

There are a handful of trigger tables on the MySQL side that upon the data entry of a parameter, run a list of queries/functions on the database side, that I would need to be able to duplicate if it's not MySQL, and the database needs to be installed with enough initial data to facilitate the new user's login, or I guess I could build a way to capture the initial user information needed to log in with a new user onboarding process after installation.

The client side I already have sorted out, I just need to figure out the back end and we'll be in business.

Right now I'm installing the community version of MySQL, then using Navicat to build out the needed tables and other objects by performing a structure synch with a master database that has all the most current table, view, function, and event definitions.

Any ideas would be greatly appreciated.
DatabasesInstallationDesktops

Avatar of undefined
Last Comment
David Smithstein

8/22/2022 - Mon
John Tsioumpris

I guess the natural choice is SQLite or Access.
David Smithstein

ASKER
I don't think Access supports using a table event, like upon data insert, to trigger the execution of a set of queries.

Do you know if SQLLite can do that?
ASKER CERTIFIED SOLUTION
slightwv (䄆 Netminder)

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
John Tsioumpris

If triggers is what you after SQLite should keep covered : https://www.sqlite.org/lang_createtrigger.html
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23
David Smithstein

ASKER
If it can be done with MySQL, that would be preferable to support the up sale to the bigger installation with minimal extra effort.  Although the linked support text falls a little short of bridging the gap in terms of knowing how to actually set it up.   But this helps me know in what direction to focus next.  Thanks!