No regret building MiniORM

MiniORM started small as Snippets to support SQLite database.

Later, it grows by supporting MySQL where the same B4X code is used to execute SQL query for CREATE TABLE, INSERT, UPDATE, DELETE and more.

Recently I have tested and fine tuning this class together with its sibling Data Connector class to support Firebird.

Yesterday I was testing with PostgreSQL with some minor modifications.

It makes developing projects that support multiple RDBMS a breeze.

No need to write different SQL queries for different databases.

Switching or migrating to another database is just a matter of changing the config file.
 
Top