Topic: Database differences

Beyond that MySQL needs a server and SqlLite no, what are the pros and cons of using one or the other database manager with MyVisual Database?

Re: Database differences

SQLite:

Pros: No server needed or install and setup something else.
Cons: Can't work for multiple users via Internet, only using shared folder in your LAN network (no recommended); less opportunity of SQL.


MySQL:
Pros: Suitable for multiple users and able to work via Internet; More advanced SQL.
Cons: You must install server and you must have experience how to use MySQL.

Dmitry.

Re: Database differences

Thank you very much Admin.