-rw-r--r-- | src/db/dbconnect.h | 11 | ||||
-rw-r--r-- | src/db/dbconnect.sqc | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/db/dbconnect.h b/src/db/dbconnect.h new file mode 100644 index 0000000..c485a79 --- a/dev/null +++ b/src/db/dbconnect.h @@ -0,0 +1,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 diff --git a/src/db/dbconnect.sqc b/src/db/dbconnect.sqc new file mode 100644 index 0000000..1e41a12 --- a/dev/null +++ b/src/db/dbconnect.sqc @@ -0,0 +1,11 @@ +#include "dbconnect.h" +#include "../util/check_error.h" + +EXEC SQL INCLUDE sqlca; + +void +dbconnect (void) +{ + EXEC SQL CONNECT TO exp004; + check_error (__FILE__, __LINE__); +} |