WACS: Database Schemas

Database Schemas: Contents

Conn (Connections) Table

New in 0.6.2 This is the conn (connections) table - directly below is the sample SQL command to create it and below that details of the fixed values for each of the short fields.
create table conn
( centryno			number(9) primary key,
  cgroup			number(6),
  corder			number(3),
  cflag                         char(1),
  cstatus			char(1),
  cmodelno                      number(6) references models,
  csetno                        number(9) references sets,
  cphotog                       varchar2(6) references photographer,
  ctype				varchar2(20) not null,
  cdesc				varchar2(80),
  ccomments			varchar2(240),
  cpath				varchar2(160)
  cadded                        date,
  camended			date );
 

Defined Values For The Conn (Connections) Table

Values For Short Fields In Conn (Connections) Table
cflag A Ad-Hoc
G Gallery
cstatus M Manually Added
T Imported from Tag Set

Previous Schema: Vendor  Next Schema: Keyword 
Back to Schema Overview  Next Section: Futures
Back to WACS Documentation Index