Qore SqlUtil Module Reference 1.9.2
Loading...
Searching...
No Matches
SqlUtilStringType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
25// minimum required Qore version
26// assume local scope for variables, do not use "$" signs
27// require type definitions everywhere
29// enable all warnings
30
32namespace SqlUtil {
34
37class SqlUtilStringType : public DataProvider::QoreStringDataTypeBase {
38
39public:
41
43 constructor(string native_type, bool nullable, *hash<auto> options) ;
44
45
47 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
48
49
51
55 auto acceptsValue(auto value);
56
57};
58};
type for string / varchar / char columns
Definition SqlUtilStringType.qc.dox.h:37
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
constructor(string native_type, bool nullable, *hash< auto > options)
creates the object
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
Qore AbstractDatabase class definition.
Definition AbstractDatabase.qc.dox.h:26