Vigilante

Vigliant Media Framework

Documentation

Tutorials

Introduction

To illustrate Vigilante's capabilities, these tutorials will use an example database called mymusic containing data about musical artists, their albums and songs on those albums. The database contains these tables and fields:

  1. Artists
    • ArtistID: primary index for the table
    • Name: name of the artist or band
  2. Albums
    • AlbumID: primary index for the table
    • ArtistID: cross index with the Artist table
    • AlbumTitle: title of an album
    • ReleaseDate: release date of the album
  3. Tracks
    • TrackID: primary index for the table
    • AlbumID: cross index with the Album table
    • DiscNum: disc number for a multi-disc set; 0 for a single-disc album
    • TrackNum: track number
    • SongTitle: title of the song