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