path:
root/
src/
util/
sqlinfoprint.h (
plain)
blob: 7df2a09cb2c96c8b30797666429e4ad77adf60a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SQLINFOPRINT_H
#define SQLINFOPRINT_H
#include "sqlca.h"
/*
* Report SQL error messages. Based on code from:
* http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.apdv.embed.doc/doc/c0005779.html
*/
int sqlinfoprint (char *appMsg,
struct sqlca *pSqlca,
const char *file, const unsigned int line);
#endif // SQLINFOPRINT_H
|