1 (edited by v_pozidis 2018-06-15 16:10:50)

Topic: Data protection

Now with the new rules in Europe from the 25th May all  data must be protected. How can we protect our previous databases using MVDB software ?

Re: Data protection

If you want to protect your data, you can use MySQL DMBS, so your data will be stored on remote server.
Also you can use SSL connection to MySQL, to protect your connection to database server.
Example: http://myvisualdatabase.com/forum/viewtopic.php?id=4274


Also you can use modified version of SQLite to encrypt your database file
$128
http://sqlite-crypt.com/documentation.htm

How to use

begin
    SQLExecute('PRAGMA key = ''pass'';');
    SQLExecute('PRAGMA lic = ''77523-009-0000007-72328'';');
end.


$499
https://www.zetetic.net/sqlcipher/
How to use

begin
    SQLExecute('PRAGMA key = ''pass'';');
end.
Dmitry.

Re: Data protection

Do you have plans for future MVDB to have a database protection ?

Re: Data protection

No, you can use exists solutions.

Dmitry.