#ifndef DBCONNECT_H
#define DBCONNECT_H

/*
 * Connect to the database.  Moved connection to its own file so that
 * there will be exactly one EXEC SQL INCLUDE sqlca; call as per
 * http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.apdv.embed.doc/doc/t0004664.html.
 */
void dbconnect (void);

#endif // DBCONNECT_H