Frames Modems Help Home Page Chipsets Search No Frames
Diary Entries See also Site Info & Diary.
30 September 2001 Continuing now the child tables for the Chipset manufacturers...

(also modified child tables to the /mfc/ table to have MID as a non-unique KEY)

 
  1. examples of driver version drawn from ATI command results (Date info is at chapter 7.3.3 in the HTML help file):
      CREATE TABLE dVInfos (
        CID INT UNSIGNED NOT NULL,
        Intro DATE,
        Version TINYTEXT,
        Notes TEXT,
        KEY(CID)
        );
  2. Types of Platforms (OSs - Windows 95, Linux etc):
      CREATE TABLE osTypes (
        OID TINYINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
        Name TINYTEXT NOT NULL
        );