Hi guys,
I'm just getting started with sqlite - i like the idea of everything being stored in a single file.
The problem is... i'm worried about security - i notice anyone can download your database file, so i fixed this using htaccess, but i would also like to password protect the file.
The option is avialble in the software i used to create the sqlite 3 file - database.db3
But the php i'm using to open/use the database dosnt seem to have the option to take the password:
try {
$db = new PDO("sqlite:database.db3");
}
catch(PDOException $e)
{
echo $e->getMessage();
}
This works fine if the database has no password - but i would really like to enabled an encryption password on my file.
Thanks for the help!