Apache Log4cxx
Version 1.7.0
Toggle main menu visibility
Loading...
Searching...
No Matches
dbappender.h
Go to the documentation of this file.
1
/*
2
* Licensed to the Apache Software Foundation (ASF) under one or more
3
* contributor license agreements. See the NOTICE file distributed with
4
* this work for additional information regarding copyright ownership.
5
* The ASF licenses this file to You under the Apache License, Version 2.0
6
* (the "License"); you may not use this file except in compliance with
7
* the License. You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
18
#ifndef LOG4CXX_DB_DB_APPENDER_H
19
#define LOG4CXX_DB_DB_APPENDER_H
20
21
#include <log4cxx/log4cxx.h>
22
23
#include <
log4cxx/helpers/exception.h
>
24
#include <
log4cxx/appenderskeleton.h
>
25
#include <
log4cxx/spi/loggingevent.h
>
26
#include <list>
27
#include <memory>
28
29
namespace
LOG4CXX_NS
30
{
31
namespace
db
32
{
33
113
class
LOG4CXX_EXPORT
DBAppender
:
public
AppenderSkeleton
114
{
115
public
:
116
DECLARE_LOG4CXX_OBJECT
(
DBAppender
)
117
BEGIN_LOG4CXX_CAST_MAP
()
118
LOG4CXX_CAST_ENTRY
(
DBAppender
)
119
LOG4CXX_CAST_ENTRY_CHAIN
(
AppenderSkeleton
)
120
END_LOG4CXX_CAST_MAP
()
121
122
DBAppender
();
123
virtual ~
DBAppender
();
124
139
void
setOption
(const
LogString
& option, const
LogString
& value) override;
140
144
void
activateOptions
(
helpers
::Pool& p) override;
145
149
void
append
(const
spi
::LoggingEventPtr& event,
helpers
::Pool&) override;
150
151
void
close
() override;
152
156
bool
requiresLayout
()
const override
157
{
158
return
false
;
159
}
160
164
void
setSql
(
const
LogString
& s);
165
169
const
LogString
&
getSql
()
const
;
170
171
private
:
172
DBAppender
(
const
DBAppender
&);
173
DBAppender
& operator=(
const
DBAppender
&);
174
175
protected
:
176
struct
DBAppenderPriv;
177
};
// class DBAppender
178
179
LOG4CXX_PTR_DEF
(
DBAppender
);
180
181
}
// namespace db
182
}
// namespace log4cxx
183
184
#endif
// LOG4CXX_DB_DB_APPENDER_H
appenderskeleton.h
log4cxx::AppenderSkeleton::AppenderSkeleton
AppenderSkeleton(LOG4CXX_PRIVATE_PTR(AppenderSkeletonPrivate) priv)
log4cxx::db::DBAppender
The DBAppender lets you log messages to a database.
Definition
dbappender.h:114
log4cxx::db::DBAppender::append
void append(const spi::LoggingEventPtr &event, helpers::Pool &) override
Adds the event to the buffer.
log4cxx::db::DBAppender::getSql
const LogString & getSql() const
Returns pre-formated statement eg: insert into LogTable (msg) values (?).
log4cxx::db::DBAppender::setSql
void setSql(const LogString &s)
Set pre-formated statement eg: insert into LogTable (msg) values (?).
log4cxx::db::DBAppender::setOption
void setOption(const LogString &option, const LogString &value) override
Set option to value.
log4cxx::db::DBAppender::close
void close() override
Release any resources allocated within the appender such as file handles, network connections,...
log4cxx::db::DBAppender::activateOptions
void activateOptions(helpers::Pool &p) override
Activate the specified options.
log4cxx::db::DBAppender::DBAppender
DBAppender()
log4cxx::db::DBAppender::requiresLayout
bool requiresLayout() const override
DBAppender does not require a layout.
Definition
dbappender.h:156
exception.h
loggingevent.h
log4cxx::db
Definition
dbappender.h:32
log4cxx::db::LOG4CXX_PTR_DEF
LOG4CXX_PTR_DEF(DBAppender)
log4cxx::helpers
Definition
propertysetter.h:27
log4cxx::spi
Definition
appender.h:30
log4cxx::LogString
std::basic_string< logchar > LogString
Definition
logstring.h:60
LOG4CXX_CAST_ENTRY
#define LOG4CXX_CAST_ENTRY(Interface)
Definition
object.h:154
END_LOG4CXX_CAST_MAP
#define END_LOG4CXX_CAST_MAP()
Definition
object.h:148
DECLARE_LOG4CXX_OBJECT
#define DECLARE_LOG4CXX_OBJECT(object)
Definition
object.h:41
LOG4CXX_CAST_ENTRY_CHAIN
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition
object.h:160
BEGIN_LOG4CXX_CAST_MAP
#define BEGIN_LOG4CXX_CAST_MAP()
Definition
object.h:142
src
main
include
log4cxx
db
dbappender.h
Generated by
1.17.0 on
SITE_PUBLISHED_DATE
Copyright © 2017-2026
Apache Software Foundation
. Apache, Chainsaw, log4cxx, Log4j, Log4net, log4php and the Apache logo are
trademarks or registered trademarks
of The Apache Software Foundation.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
Privacy Policy
.