home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l216 / 2.ddi / XREFLEX.PRO < prev    next >
Encoding:
Text File  |  1987-03-23  |  2.4 KB  |  91 lines

  1. /************************************************************
  2.  
  3.      Turbo Prolog Toolbox
  4.      (C) Copyright 1987 Borland International.
  5.  
  6.     Access a Reflex(R) compatible data base file
  7.     from Prolog.
  8.     
  9.     We are using the file XREFLEX.RXD for this demo program.
  10.  
  11. *************************************************************/
  12.  
  13. project "xreflex"
  14.  
  15. Domains
  16.   File    = fp
  17.  
  18. global predicates
  19.   real_ints(REAL,INTEGER,INTEGER,INTEGER,INTEGER)-(o,i,i,i,i) language c
  20.  
  21. include    "readext.pro"
  22. include    "reflex.pro"
  23.  
  24. predicates
  25.   /* List data RECORDS */
  26.   list_Recs(FldNames,ReflexRecL)
  27.   list_rec(FldNames,ReflexRec)
  28.   list_elem(ReflexElem)
  29.   PressAKey
  30.   doPrompt
  31.  
  32. CLAUSES
  33.   list_Recs(_,[]):- !.
  34.   list_Recs(FldNames,[ReflexRec|ReflexRecs]):-
  35.       nl,nl,
  36.       list_rec(FldNames,ReflexRec),
  37.       PressAKey,
  38.       list_Recs(FldNames,ReflexRecs).
  39.  
  40.   list_rec([],[]) :- !.
  41.   list_rec([FldName|FldNames],[Elem|Elems]) :-
  42.       writef("\n%-20: ",FldName),
  43.       list_elem(Elem),
  44.       list_rec(FldNames,Elems).
  45.  
  46.   list_elem(untyped)    :- write("Untyped").
  47.   list_elem(text(Str))  :- write(Str).
  48.   list_elem(date(Date)) :- write(Date).
  49.   list_elem(real(Real)) :- write(Real).
  50.   list_elem(int(Int))   :- write(Int).
  51.  
  52.   PressAKey :-
  53.       makewindow(_,_,_,_,MinR,_,NoofR,_),trace(on),
  54.       cursor(R,_), R<=MinR+NoofR-4,!.
  55.  
  56.   PressAKey :- doPrompt,cursor(R,C), scroll(R,0),cursor(0,C).
  57.  
  58.   doPrompt:-
  59.       makewindow(Nr,Att,_,_,MinR,MinC,NoofR,NoofC),
  60.       MinR2=MinR+NoofR-1, MinC2=MinC+NoofC/3+1,
  61.       str_len(" Press a key",Len), Len2=Len+1, bitxor(Att,8,Att2),
  62.       makewindow(Nr,Att2,0,"",MinR2,MinC2,1,Len2),
  63.       write(" Press a key"), 
  64.       readdevice(FP), readdevice(keyboard), readchar(_), readdevice(FP),
  65.       removewindow.
  66.  
  67. /*************************************************************
  68.         Goal
  69. *************************************************************/
  70.         
  71. goal    openread(fp,"xreflex.rxd"), readdevice(fp),
  72.     filemode(fp,0),
  73.  
  74.     /* Build data structure */
  75.     init_Reflex(TotRecs,FldNames,TypeL,TxtPools),
  76.     filepos(fp,DataFilePos,0),
  77.     
  78.     /* Read all data records */
  79.     makewindow(85,41,36," Reflex(R) All Data Records ",0,0,25,40),
  80.     rd_Reflexfile(TotRecs,TypeL,TxtPools,ReflexRecs),
  81.     list_Recs(FldNames,ReflexRecs), doPrompt,
  82.     window_attr(27),
  83.  
  84.     /* Read data records sequentially */
  85.     makewindow(85,72,33," Reflex(R) Sequential Access ",0,40,25,40),
  86.     filepos(fp,DataFilePos,0),
  87.     rd_ReflexRec(TotRecs,TypeL,TxtPools,Rec),
  88.     nl,nl,
  89.     list_rec(FldNames,Rec),
  90.     PressAKey,fail.
  91.