Online databases?

I agree w/@SupportiveEntity

You do not want a server or client having direct DB connection credentials. Your asking to be hacked and your DB destroyed.

SELECT name FROM sqlite_schema WHERE type ='table' AND name NOT LIKE 'sqlite_%';
DROP TABLE IF EXISTS SomeTable;

You want a secure middleman service (RESTful API) the server can send requests to and receive json responses from.

Security is key here.

2 Likes