path:
root/
src/
util/
sqlinfoprint.h (
plain)
blob: 984694b4f6a1a6e46cea5e698c93d3cb63b564e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
|