home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / ib / setups / intrabld / data.z / DATABASE.CC < prev    next >
Text File  |  1996-12-11  |  631b  |  19 lines

  1. //
  2. //   Database.cc  -  Client/Server Version
  3. //
  4. //   The KbaseDatabase class is used by all the forms and reports in the
  5. //   Knowledge Base applications. You can set up your own alias and 
  6. //   simply change this class to have all the forms draw that data from
  7. //   the new alias.
  8. //
  9. //   Note:  This class has the login string for connecting to the SQL
  10. //          server. You may need to change the login string to match
  11. //          an actual user on the server.
  12. //
  13. class KbaseDatabase extends Database custom {
  14.    with (this) {
  15.       databaseName = "KBASE_IB";
  16.       loginString = "sysdba/masterkey";
  17.    }
  18. }
  19.