home *** CD-ROM | disk | FTP | other *** search
- package ADA_INTERFACE_TO_DAMES is
- -- a set of two packages providing facilities to an Ada program
- -- to describe and manipulate data in the database structures
- -- managed by the relational DataBase Management System DAMES
- -- which is written in FORTRAN 77.
- --
- -- The user Ada program sees the database structure as an extension
- -- of its working space. Data structure conversions are carried out
- -- by the interface, so that all powerful Ada data structuring
- -- facilities can be used in the user program.
-
- package DAMES is
- -- a set of three procedures allowing an Ada user program
- -- to manipulate data in the database with relational sentences
- -- embedded in a procedure call. They are mainly used to
- -- manipulate the tables of the database.
- end DAMES;
-
- package LL_DAMES is
- -- a set of twenty-one subprograms for the manipulation of
- -- database structures at a low-level by an Ada user program.
- -- They improve the performances of data manipulation with
- -- relational sentences, which can be done with the procedures
- -- of the package DAMES.
- end LL_DAMES;
-
- ~~~~~~~~~~~~~~~~~~~~~~
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (PRIME_CONTRACTOR => "CAP GEMINI DASD Corp.",
- PROJECT_LEADER_COMPANY => "INFORMATIQUE INTERNATIONALE S.A."),
- CONTACT => ("Alain BOURDAIS",
- "INFORMATIQUE INTERNATIONALE",
- "20 rue Saarinen, SILIC 232",
- "94578 RUNGIS - FRANCE"),
- PHONE => (33,1,687,3223),
- DATE_SUBMITTED => (11, APR, 1985));
-
- package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETER_PACKAGE
- (LINES_OF_SOURCE_CODE => 10000,
- DEVELOPMENT_COMPILER => (DATA_GENERAL_MV, ROLM_ADE));
-
- package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENT => (PDR (24, DEC, 1984)),
- SCHEDULED_EVENT => (DELIVERY (17, APR, 1985)));
-
- end ADA_INTERFACE_TO_DAMES;
-