カラー画像 「テーブル定義と一貫性制約」
create table ColorImageFiles (
    id       INTEGER  PRIMARY KEY autoincrement not null,
    fullpath TEXT UNIQUE not null,
    basename TEXT not null,
    dirname  TEXT not null,
    format   TEXT not null,
    columns  INTEGER not null,
    rows     INTEGER not null,
    image_encoded      text,
    thumbnail_encoded  text,
    created_at    DATETIME not null,
    updated_at    DATETIME
);

ruby/rubyrmagick.html

format, columns, rows, thumbnail

ruby/nkfmmencode.html

MIME encode, decode

ruby/rubyintro.html

basename, dirname

ファイル一覧の取得

ruby/filelist.html

create_row method