camera_program
Contains a listing of all program modes.
Note that this table will likely go away in the future, as it's not easily internationalized and lacks several modes.
Referential Integrity.
CREATE TABLE camera_program ( identifier integer NOT NULL PRIMARY KEY, value varchar(40) );
None.
None.
None.
None.
Version 2.5
Still in use
= Version 2.5 =
CREATE TABLE camera_program ( identifier integer NOT NULL PRIMARY KEY, value varchar(40) );
= Version 2.5 =
INSERT INTO camera_program VALUES (NEXTVAL('camera_program_id_sequence'), 'Camera Program Automatic'); INSERT INTO camera_program VALUES (NEXTVAL('camera_program_id_sequence'), 'Aperture Priority'); INSERT INTO camera_program VALUES (NEXTVAL('camera_program_id_sequence'), 'Shutter Priority'); INSERT INTO camera_program VALUES (NEXTVAL('camera_program_id_sequence'), 'Manual');