Show
Ignore:
Timestamp:
10/23/08 15:43:47 (4 months ago)
Author:
norris
Message:

- Added a ConnectionInfo? interface and implementation to store database info so different
connection methods can be used more easily;
- Added fall-back connection method for addressing the failures to connect on Ubuntu 7

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cqos-database/DBSchemas/meta_dbschema.sql

    r130 r156  
    190190 
    191191CREATE TABLE metadata_parameters ( 
    192         trial                           INT,   
     192        trial                           INT    NOT NULL,   
    193193        interval_event                  TEXT,   
    194194        category_name                   TEXT, 
    195195        parameter_name                  TEXT, 
    196         parameter_type          TEXT, 
    197         parameter_value                 TEXT 
     196        parameter_type                  TEXT, 
     197        parameter_value                 TEXT, 
     198        FOREIGN KEY(trial) REFERENCES trial(id) ON DELETE CASCADE ON UPDATE CASCADE 
    198199);