Page 1 of 1

What is the Best/Fits Database for Livecode

Posted: Fri Jun 08, 2018 2:32 am
by lemodizon
Hello Livecode Developers

Just want to ask in your opinion & experienced developing systems & games using Livecode. what is the best/fits database for the ff:

examples
1. POS (Point of Sale) & inventory System and other big system you know.
2. Games (Android & Ios)
3. Web app (eCommerce site)

thank you for your sharing your opinion regarding this topic.

Go Livecode

Re: What is the Best/Fits Database for Livecode

Posted: Fri Jun 08, 2018 8:08 am
by mrcoollion
As I see it there are two types of databases (related to this posts question).

1) SQLite which is an on-disk file based database.
2) Other RDBMS (relational database management systems) with client/server SQL database engines such as MySQL, Oracle, PostgreSQL, or SQL Server.

You can use SQLite for Applications that have the need for a repository to keep data in like Embedded devices and the internet of things, Websites. SQLite can be used as a substitute for ZIP archives or Tarballs. And you can use SQLite as a Server-side database or as stand-in for an enterprise database during demos or testing. And for uses with only a few users SQLite can function as a central Database.
I personally develop using SQLite as a datastore because it is easy to use and test with. When I need it or if the customer needs it I have build a routine (in LiveCode) that enables me to transfer the SQLite DB Stucture i used for development to a MySQL, PostgreSQL, or SQL Server database.

Client/Server RDBMS (relational database management systems) such as MySQL, Oracle, PostgreSQL, or SQL Server are most appropriate when; the data is separated from the application by a network, when there are many concurrent writers (users), if you expect the data to grow to a size that you are uncomfortable with or unable to fit into a single disk file.

This is my humble opinion on the use of databases and LiveCode.

Regards,

Paul

Re: What is the Best/Fits Database for Livecode

Posted: Fri Jun 08, 2018 1:57 pm
by lemodizon
Thanks Paul

your humble opinion is a great help for us (newbie) to try this databases you mentioned.

i appreciated it :)

thanks again

Go Livecode!