-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRecordSet.h
77 lines (60 loc) · 2.94 KB
/
CRecordSet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2002, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _CRECORDSET_H
#define _CRECORDSET_H
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <SQL.H>
#include <SQLExt.H>
typedef int(*ErrorHandler)(void* pCaller, const char* sSource, const char* sErrorMsg, const int iErrorNumber);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class CRecordSet {
private:
ErrorHandler pErrorHandler;
bool bcTrimCharData;
bool bcReplaceSingleQuotes;
bool bcThrowErrors;
public:
void* pPublicData;
void SetErrorHandler(ErrorHandler pHandler);
bool Close();
bool Fetch();
bool Fetch(int* iErrorCode);
bool Reset();
bool GetData(const unsigned short iColumnIndex, short iType, void* pvBuf, SQLLEN iBufSz, SQLLEN* piIndicator);
bool GetData(const unsigned short iColumnIndex, short iType, void* pvBuf, SQLLEN iBufSz, SQLLEN* piIndicator, short* piResult);
bool GetColumnInfo(const int iColumnIndex, char* sOutName, int iSzOfOutName,
int* iOutColNameLen, int* ioutDataType, SQLULEN* iOutColSize, int* iNumOfDeciPlaces, int* iColNullable);
bool GetColumnBinaryValue(const int iColumnIndex, char* sBuf, const SQLLEN iBufSz, SQLLEN* iOutLen);
bool GetColumnStringValue(const int iColumnIndex, char* sBuf, const SQLLEN iBufSz, SQLLEN* iOutLen);
bool GetColumnLongValue(const int iColumnIndex, long* plOutVal);
long GetColumnLongValue(const int iColumnIndex);
bool GetColumnDoubleValue(const int iColumnIndex, double* pdOutVal);
double GetColumnDoubleValue(const int iColumnIndex);
bool GetColumnFloatValue(const int iColumnIndex, float* pfOutVal);
float GetColumnFloatValue(const int iColumnIndex);
bool GetErrorMessage(int* iOutErr, char* sOutError, const int iErrBufSz);
bool GetSQLState(char* sSQLState);
bool ThrowErrorIfSet();
bool ThrowError();
SQLLEN RTrim(char* sData, SQLLEN iDataSz);
void ReplaceSingleQuotes(char* sData, SQLLEN iDataSz);
bool ThrowErrors();
bool ThrowErrors(bool bThrowErrors);
bool TrimCharData(bool bTrimCharData);
bool TrimCharData();
bool ReplaceSingleQuotes(bool bReplaceSingleQuotes);
bool ReplaceSingleQuotes();
HSTMT hSTMT;
SQLLEN RowCount;
SQLLEN ColumnCount;
CRecordSet();
~CRecordSet();
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif