db.sqlar_skeleton | R Documentation |
Initialize the SQLite archive schema
db.sqlar_skeleton(db, name)
db |
The database connection. S4 object of class "database". |
name |
The name of the SQLite archive table. |
This has a side effect of creating a table named "sqlar"
in the database file pointed to by db
. The sqlar table has
the following schema:
CREATE TABLE sqlar( name TEXT PRIMARY KEY, -- name of the file mode INTEGER, -- access permissions mtime INTEGER, -- last modification time sz INTEGER, -- original file size data BLOB -- compressed content );
None.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.