path:
root/
src/
db/
dbconnect.h (
plain)
blob: c485a793a1bc11ac0930be08cff8982b9de8daa7
1
2
3
4
5
6
7
8
9
10
11
|
#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
|