Initializes the database. @throws IOException I/O exception
()
| 122 | * @throws IOException I/O exception |
| 123 | */ |
| 124 | private void init() throws IOException { |
| 125 | table = new TableDiskAccess(meta, false); |
| 126 | texts = new DataAccess(meta.dbFile(DATATXT)); |
| 127 | values = new DataAccess(meta.dbFile(DATAATV)); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Writes all meta data to disk. |