home *** CD-ROM | disk | FTP | other *** search
- //
- // Database.cc - Client/Server Version
- //
- // The KbaseDatabase class is used by all the forms and reports in the
- // Knowledge Base applications. You can set up your own alias and
- // simply change this class to have all the forms draw that data from
- // the new alias.
- //
- // Note: This class has the login string for connecting to the SQL
- // server. You may need to change the login string to match
- // an actual user on the server.
- //
- class KbaseDatabase extends Database custom {
- with (this) {
- databaseName = "KBASE_IB";
- loginString = "sysdba/masterkey";
- }
- }
-