| 754 | * Must run before SQLite initialises, so it is done once on the first open. */ |
| 755 | |
| 756 | cbm_store_t *cbm_store_open_memory(void) { |
| 757 | return store_open_internal(":memory:", true, true); |
| 758 | } |
| 759 | |
| 760 | cbm_store_t *cbm_store_open_path(const char *db_path) { |
| 761 | if (!db_path) { |