News Score: Score the News, Sort the News, Rewrite the Headlines

SQLite Archive Files

1. Introduction An "SQLite Archive" is a file container similar to a ZIP archive or Tarball but based on an SQLite database. An SQLite Archive is an ordinary SQLite database file that contains the following table as part of its schema: CREATE TABLE sqlar( name TEXT PRIMARY KEY, -- name of the file mode INT, -- access permissions mtime INT, -- last modification time sz INT, -- original file size data BLOB -- compressed content ); Each row ...

Read more at sqlite.org

© News Score  score the news, sort the news, rewrite the headlines