Qore SqlUtil Module Reference  1.7.5
SqlUtilFloatType.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 
32 namespace SqlUtil {
34 
37 class SqlUtilFloatType : public DataProvider::QoreFloatDataTypeBase {
38 
39 public:
40 protected:
42  string name;
43 
44 public:
45 
47  constructor(string native_type, bool nullable, *hash<auto> options)
48  ;
49 
50 
52  string getName();
53 
54 
56 
60  auto acceptsValue(auto value);
61 
62 };
63 };
type for date / timestamp columns
Definition: SqlUtilFloatType.qc.dox.h:37
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
Qore AbstractNumericDataType class definition.
Definition: AbstractNumericDataType.qc.dox.h:31
string getName()
returns the type name
constructor(string native_type, bool nullable, *hash< auto > options)
creates the object
string name
the type name
Definition: SqlUtilFloatType.qc.dox.h:42