DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦9f275c075⟧ TextFile

    Length: 3209 (0xc89)
    Types: TextFile
    Notes: UNIX file
    Names: »drivers«

Derivation

└─⟦c93a30372⟧ Bits:30004169/disk3.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦c93a30372⟧ UNIX Filesystem
    └─⟦this⟧ »up/new/usr/UAP/demo/us_sales.frm/src/drivers« 

TextFile

:C      U.S. Version
:C      This form allows inquiry only on the cars tables to
:C      find the current driver of the car.


:TITLE
-- DRIVER INQUIRY --

:TABLE
cars

:GLOBAL
:C  Do not allow any editing or other changes to the database
:C This form is for inquiries only.

no delete
no edit
no create

:SCREEN


          DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF@@
          [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[
          B   You may search on any of the following items       B@@
          [                                                      [
          B   to identify the current driver of the car.         B@@
          [                                                      [
          B                                                      B@@
          [                                                      [
          B     Car ID             : [L1.]                       B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B     Car license        : [L2......]                  B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B     Mileage            : [L3.....]                   B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B     Petrol             : [L4.....]                   B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B     Year               : [L5..]                      B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B                                                      B@@
          [                                                      [
          KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG@@
          [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[
          B                                                      B@@
          [                                                      [
          B   Current driver of car: [L6........] [L7.........]  B@@
          [   AAAAAAAAAAAAAAAAAAAAAA                             [
          B                                                      B@@
          [                                                      [
          JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH@@
          [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[
:LABELS
L1=Car_id,  type char, chars D,
prompt = "Type in 3 numbers: car ids range from '001' to '020'";

L2=License, type char, chars "DSU", minimum 6,
   prompt = "All letters will be converted to uppercase";

L3=Mileage, type dec,  minimum -10, maximum 100000, decimals 0,
   prompt = "Minimum of -10 and maximum of 100000";

L4=Petrol,  type dec,  decimals 0;

L5=Yearmonth,    type char, chars "D", minimum 4,
   prompt = "Enter year in the format YYMM"

:REFER
table = sales_force
search on License = L2;
L6 = First_name;
L7 = Surname;

:HELP

This form will only allow a user to view data in the database.

It will NOT allow a user to input, edit or delete data.

NOTE:
Forms can be designed to allow users to input, edit, delete and select data.
They can also be designed to restrict access, that is 'no input', 'no edit'
and 'no delete'.


:END