Qore DbDataProvider Module Reference 2.1.1
Loading...
Searching...
No Matches
DbDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DbDataProvider {
28class DbDataProviderFactory : public AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("DbDataProvider");
34
36 const FactoryInfo = ...;
37
38
39public:
40
42
44protected:
45 hash<DataProviderFactoryInfo> getInfoImpl();
46public:
47
48
50
52protected:
53 hash<DataProviderInfo> getProviderInfoImpl();
54public:
55
56
58protected:
59 Class getClassImpl();
60public:
61
62};
63};
The DB data provider factory.
Definition DbDataProviderFactory.qc.dox.h:28
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
static Class cls
Data provider type info.
Definition DbDataProviderFactory.qc.dox.h:33
const FactoryInfo
Factory info.
Definition DbDataProviderFactory.qc.dox.h:36
Class getClassImpl()
Returns the class for the data provider object.
Qore AbstractDbRecordIterator class definition.
Definition AbstractDbRecordIterator.qc.dox.h:26