poolborges / unicenta-pos

UnicentaPOS source code
GNU General Public License v3.0
46 stars 45 forks source link

An sqlite option for the database #79

Open fadi123go opened 1 week ago

fadi123go commented 1 week ago

Unicenta pos uses maria db, but is there a posssibility you may add an sqlite option?

gablex commented 1 week ago

Why would you want to use SQLite? It is quite a lightweight RDBMS making it not ideal for a big and complex application like unicentaopos.

fadi123go commented 1 week ago

It would make unicenta pos function like a standalone app and very easy to install for very small shops without the need of setting up servers and with little technical skill . Sqlite can be capable enough for single users.

poolborges commented 3 days ago

Sqlite is not suported and I have not plan now But, open to accept contribuition.

Currently you can use an alternative embedded java data base HSQLDB, os good for small Business that only have a single user

HSQLDB JDBC driver is alreday provide

You just need to configure,

Read more

https://github.com/poolborges/unicenta-pos/blob/main/docs/guide-devel/src/main/asciidoc/chapters/database-overview.adoc

fadi123go commented 1 day ago

Thanks a lot.