home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / dempodc.bas < prev    next >
BASIC Source File  |  1994-11-14  |  251b  |  10 lines

  1. Option Explicit
  2.  
  3. Global OraDatabase As Object
  4.  
  5. Global Const Connect$ = "scott/tiger"
  6. Global Const DatabaseName$ = "ExampleDb"
  7. Global Const DeptQuery$ = "select * from dept"
  8. Global Const EmpQuery$ = "select * from emp where deptno = :deptno"
  9.  
  10.