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