Files
sqlite3/vfs/README.md

7 lines
263 B
Markdown
Raw Normal View History

2023-05-31 18:45:45 +01:00
# Go SQLite VFS API
2023-11-09 16:35:45 +00:00
This package implements the SQLite [OS Interface](https://sqlite.org/vfs.html) (aka VFS).
2023-05-31 18:45:45 +01:00
2023-09-18 14:47:55 +01:00
It replaces the default SQLite VFS with a pure Go implementation.
2023-05-31 18:45:45 +01:00
2023-10-17 14:04:23 +01:00
It also exposes interfaces that should allow you to implement your own custom VFSes.