Hi, following the advice of Ulrich and others: https://forums.indigorose.com/forum/...on-web-hosting, I am migrating my project from SQlite to Mysql.
I am using Wamp server and all tests are running locally, everything is working as expected.
I have a slight problem however, my project is divided in two parts:
1- One main module, this is accessed by one person who is in charge of inserting records in the database, he maintains it (updates). Without his input the other modules wouldn´t have any data to work with. This main module is independent in that no other user can manipulate its data.
2- Several other modules (6) that performs many activities based on the data from main module. These other modules highly interact with each other tables and that is why Mysql is so valuable for this particular project. Using SQLite has lots of troubles.
Based on that description, you can tell that main module really does not need to be migrated to Mysql at all. On the other hand the other modules benefit greatly of Mysql capabilities.
Is it possible to keep integration between Mysql and SQlite within the same project in AMS? The main module is only used by other modules for searching (by making SELECT or JOIN queries).
What I want to achieve is this: keep main module using SQLite and other modules use Mysql.
Plugins I am using are: SQLite3, MySQL (mindquake)
Thanks for any comments or observations.
David
I am using Wamp server and all tests are running locally, everything is working as expected.
I have a slight problem however, my project is divided in two parts:
1- One main module, this is accessed by one person who is in charge of inserting records in the database, he maintains it (updates). Without his input the other modules wouldn´t have any data to work with. This main module is independent in that no other user can manipulate its data.
2- Several other modules (6) that performs many activities based on the data from main module. These other modules highly interact with each other tables and that is why Mysql is so valuable for this particular project. Using SQLite has lots of troubles.
Based on that description, you can tell that main module really does not need to be migrated to Mysql at all. On the other hand the other modules benefit greatly of Mysql capabilities.
Is it possible to keep integration between Mysql and SQlite within the same project in AMS? The main module is only used by other modules for searching (by making SELECT or JOIN queries).
What I want to achieve is this: keep main module using SQLite and other modules use Mysql.
Plugins I am using are: SQLite3, MySQL (mindquake)
Thanks for any comments or observations.
David
Comment