.DB-WAL 파일 확장자
SQLite Database Write-Ahead Log File
| 개발사 | SQLite |
| 인기도 |
3.7 | 56 투표 |
DB-WAL 파일이란 무엇인가요?
Temporary database file created by SQLite 3.7.0 or later, a compact database program commonly embedded into mobile and desktop applications; saves write-ahead log (WAL) information for the database; automatically created and managed by the database.
추가 정보
Since SQLite is a popular embedded database technology, you may see DB-WAL, .DB-SHM, and other temporary database files with applications that use SQLite.
참고: In an SQLite write-ahead logging scheme, all database modifications are written to the DB-WAL file before being committed to the database. WAL was introduced as an alternative scheme to SQLite's default "rollback journal" policy.