Table des matières

Notes

Création d'une table

CREATE TABLE 'articles' (
    'id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
    'title' TEXT
);

Types de champs