Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update README.md to describe how symbolic links are stored in an archive. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ef2844a7e080e9ba7d008595c1942fd9 |
User & Date: | dan 2017-12-04 16:24:41.216 |
Context
2018-01-07
| ||
19:37 | Update the README.md file to talk about the difference between the zlib compression format and the raw deflate compression format and why SQLAR uses the zlib format. Leaf check-in: 4824e73896 user: drh tags: trunk | |
2017-12-04
| ||
16:24 | Update README.md to describe how symbolic links are stored in an archive. check-in: ef2844a7e0 user: dan tags: trunk | |
2017-12-02
| ||
19:15 | Add symlink support to sqlar. check-in: 4a0ed63dae user: dan tags: trunk | |
Changes
Changes to README.md.
︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | data BLOB -- compressed content ); Both directories and empty files have sqlar.sz==0. Directories can be distinguished from empty files because directories have sqlar.data IS NULL. The file is compressed if length(sqlar.blob)<sqlar.sz and is stored as plaintext if length(sqlar.blob)==sqlar.sz. ## Fuse Filesystem An SQLite Archive file can be mounted as a [Fuse Filesystem](http://fuse.sourceforge.net) using the "sqlarfs" utility, including with this project. | > > > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | data BLOB -- compressed content ); Both directories and empty files have sqlar.sz==0. Directories can be distinguished from empty files because directories have sqlar.data IS NULL. The file is compressed if length(sqlar.blob)<sqlar.sz and is stored as plaintext if length(sqlar.blob)==sqlar.sz. Symbolic links have sqlar.sz set to -1, and the link target stored as a text value in the sqlar.data field. ## Fuse Filesystem An SQLite Archive file can be mounted as a [Fuse Filesystem](http://fuse.sourceforge.net) using the "sqlarfs" utility, including with this project. |
︙ | ︙ |