Qore SqlUtil Module Reference 1.9.2
Loading...
Searching...
No Matches
SqlUtilColumnDataType.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 SqlUtilColumnDataType : public DataProvider::QoreDataType {
38
39public:
41 constructor(string native_type, string type, *hash<auto> options) ;
42
43
45 constructor(string native_type, Type type, *hash<auto> options) ;
46
47
49
53 auto acceptsValue(auto value);
54
55};
56};
generic type for SQL datatypes where no translations are provided for NULL for "or nothing" types
Definition SqlUtilColumnDataType.qc.dox.h:37
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
constructor(string native_type, string type, *hash< auto > options)
creates the object
constructor(string native_type, Type type, *hash< auto > options)
creates the object
Qore AbstractDatabase class definition.
Definition AbstractDatabase.qc.dox.h:26