I've heard that SQLite can do this (to avoid synchronicity issues in heavy traffic scenarios) is this true? If so how would I do this with PDO in PHP?
|
|
Would you be looking for the ATTACH and DETACH sqlite commands? You can call these with a query to any SQLite PDO object. The commands allow you to attach a separate database file to the current session. An example would be:
You can then refer to the tables located in the attached database by their name (eg: Reference: SQLite Manual |
||
|
|
|
|
You can open a DB in memory (I believe the DSN for PDO is sqlite:memory:) and attach the different databases. |
||
|
|
