home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
main.cxx
< prev
next >
Wrap
C/C++ Source or Header
|
1996-05-31
|
686b
|
33 lines
/*---------------------------------------------------------------------------
*
* File : @(#)main.cxx 1.1
* Author : frmo
* Original date : 6-7-1993
* Description : Example main
* Usage: main <database name>
*
*---------------------------------------------------------------------------
*/
#include <stream.h>
#ifndef DBOBJECT_HXX
#include "DBObject.hxx"
#endif
main(int argc, char *argv[])
{
if (argc != 2) {
cerr << "Usage: " << argv[0] << " <database name>" << endl;
return 1;
}
if (DBObject::connectDB(argv[1]) < 0) {
cerr << "Connect failed" << endl;
return 1;
}
// Application specific stuff goes here
return 0;
}