(db: SqliteDatabase, dbPath: string, backend: SqliteBackend)
| 84 | private openedInode: string | null; |
| 85 | |
| 86 | private constructor(db: SqliteDatabase, dbPath: string, backend: SqliteBackend) { |
| 87 | this.db = db; |
| 88 | this.dbPath = dbPath; |
| 89 | this.backend = backend; |
| 90 | this.openedInode = statInode(dbPath); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Initialize a new database at the given path |
nothing calls this directly
no test coverage detected