$darkmode
Qore DbDataProvider Module Reference 2.1.1
DbDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DbDataProvider {
28 class DbDataProviderFactory : public AbstractDataProviderFactory {
29 
30 public:
31 protected:
33  static Class cls = new Class("DbDataProvider");
34 
36  const FactoryInfo = <DataProviderFactoryInfo>{
37  "name": "db",
38  "desc": "Database data provider factory",
39  "children_can_support_records": True,
40  "children_can_support_transaction_management": True,
41  };
42 
43 public:
44 
46 
48 protected:
49  hash<DataProviderFactoryInfo> getInfoImpl();
50 public:
51 
52 
54 
56 protected:
57  hash<DataProviderInfo> getProviderInfoImpl();
58 public:
59 
60 
62 protected:
63  Class getClassImpl();
64 public:
65 
66 };
67 };
The DB data provider factory.
Definition: DbDataProviderFactory.qc.dox.h:28
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
static Class cls
Data provider type info.
Definition: DbDataProviderFactory.qc.dox.h:33
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
const FactoryInfo
Factory info.
Definition: DbDataProviderFactory.qc.dox.h:36
Class getClassImpl()
Returns the class for the data provider object.
const True
Qore AbstractDbRecordIterator class definition.
Definition: AbstractDbRecordIterator.qc.dox.h:26