laserlight;10966521 wrote:SQLite does not have any access control other than what is provided by the filesystem, or otherwise externally provided.
When i create my sqlite database - i get the option of setting a database password.
So at the moment - it is not possible to upload this password protected database, and use it with PHP and PDO 😕
That is sad, as sqlite seemed really great - but having no real security when the database is stored in the public html isnt very good.
I read that PDO is now the best way to work with sqlite files, but the php site also shows this as a way of opening the sqlite databases, and it allows for an encryption key / password: (LINK TO PHP SQLite page)
public bool SQLite3::open ( string $filename [, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE [, [B]string $encryption_key [/B]]] )