DCL 3.7.4
Loading...
Searching...
No Matches
SqTypes.h
Go to the documentation of this file.
1#ifndef __DCL_SQ_TYPES_H__
2#define __DCL_SQ_TYPES_H__ 20260117
3
4__DCL_BEGIN_NAMESPACE
5
6// _s는 '\0' 종결문자열 이어야 한다. _endptr는 _s의 최종 위치를 반환한다.
7// return false는 오류데이터를 포함하고 있고, _r 값은 사용할 수 없다.
9 const char* _s, const char** _endptr,
11);
12
13// _s는 '\0' 종결문자열 이어야 한다. _endptr는 _s의 최종 위치를 반환한다.
14// return false는 오류데이터를 포함하고 있고, _r 값은 사용할 수 없다
16 const char* _s, const char** _endptr,
18);
19
20const wchar_t* __dataTypeName(int _type);
21
22bool __decode_timestamp_julianday(double _julianday, SQL::TimeStamp& _r);
23bool __decode_timestamp_unixepoch(int64_t _unixepoch, SQL::TimeStamp& _r);
24
25__DCL_END_NAMESPACE
26
27#endif // __DCL_SQ_TYPES_H__
const wchar_t * __dataTypeName(int _type)
Definition SqTypes.cpp:297
bool __decode_timestamp_julianday(double _julianday, SQL::TimeStamp &_r)
Definition SqTypes.cpp:354
__DCL_BEGIN_NAMESPACE bool __decode_timestamp_iso(const char *_s, const char **_endptr, SQL::TimeStamp &_r)
Definition PqTypes.cpp:176
bool __decode_timestamp_unixepoch(int64_t _unixepoch, SQL::TimeStamp &_r)
Definition SqTypes.cpp:380
bool __decode_interval_iso(const char *_s, const char **_endptr, SQL::Interval &_r)
Definition PqTypes.cpp:308