| 1. |
Why Does Reading Require Write Privileges On Database File? |
|
Answer» In order to run the SELECT statement, it still needs to start a transaction. if you wish to build a read-only database to place on some read-only media like CD or DVD ROM. you can do it with: When the database becomes read-only, the only thing you can write to is the read_only flag (to reset it back to read-write). In order to run the SELECT statement, it still needs to start a transaction. if you wish to build a read-only database to place on some read-only media like CD or DVD ROM. you can do it with: When the database becomes read-only, the only thing you can write to is the read_only flag (to reset it back to read-write). |
|