Du kannst in MS
Access ein Datenbanpasswort anlegen. Damit meine ich nicht eine Benutzerverwaltung, sondern lediglich ein Paswort, das beim Öffnen der MDB Dateie gefragt wird... In Delphi kannsz du über diesen ConnectionString die Datenbank dann öffnen:
Delphi-Quellcode:
DB.ConnectionString := Format ('
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=%s;Persist Security Info=False;' +
'
Jet OLEDB:Database Password=%s',
[MDBDatei,Paswort]) ;