Qore DbDataProvider Module Reference
1.0
DbDataProviderFactory.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
DbDataProvider
{
34
class
DbDataProviderFactory
:
public
AbstractDataProviderFactory {
35
36
public
:
37
protected
:
38
static
Class cls =
new
Class(
"DbDataProvider"
);
39
40
public
:
41
43
string
getName
();
44
45
47
49
hash<DataProviderInfo>
getInfo
();
50
51
53
Class
getClass
();
54
55
};
56
};
DbDataProvider::DbDataProviderFactory::getClass
Class getClass()
Returns the class for the data provider object.
DbDataProvider::DbDataProviderFactory::getName
string getName()
Returns the name of the data provider factory.
DbDataProvider::DbDataProviderFactory
The DB data provider factory.
Definition:
DbDataProviderFactory.qc.dox.h:34
DbDataProvider::DbDataProviderFactory::getInfo
hash< DataProviderInfo > getInfo()
Returns static provider information.
DbDataProvider
Qore AbstractDbRecordIterator class definition.
Definition:
AbstractDbRecordIterator.qc.dox.h:32