home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / empoip.bas < prev    next >
BASIC Source File  |  1994-09-19  |  416b  |  17 lines

  1.  
  2. 'Global objects
  3. Global OraSession As Object
  4. Global OraDatabase As Object
  5. Global EmpDynaset As Object
  6.  
  7. ' Not required to be constant.
  8. Global Const EmpQuery$ = "select * from emp"
  9. Global Const DatabaseName$ = "ExampleDb"
  10. Global Const Connect$ = "scott/tiger"
  11.  
  12. Global Const WarnFirstEmp$ = "You are already on the first employee."
  13. Global Const WarnLastEmp$ = "You are already on the last employee."
  14.  
  15.  
  16.  
  17.