Uses of Interface
ch.qos.logback.core.db.ConnectionSource
-
Packages that use ConnectionSource Package Description ch.qos.logback.core.db The ch.qos.logback.core.db package provides bases classes to append objects into various databases. -
-
Uses of ConnectionSource in ch.qos.logback.core.db
Classes in ch.qos.logback.core.db that implement ConnectionSource Modifier and Type Class Description class
ConnectionSourceBase
class
DataSourceConnectionSource
The DataSourceConnectionSource is an implementation ofConnectionSource
that obtains the Connection in the recommended JDBC manner based on aDataSource
.class
DriverManagerConnectionSource
The DriverManagerConnectionSource is an implementation ofConnectionSource
that obtains the Connection in the traditional JDBC manner based on the connection URL.class
JNDIConnectionSource
TheJNDIConnectionSource is an implementation ofConnectionSource
that obtains aDataSource
from a JNDI provider and uses it to obtain aConnection
.Fields in ch.qos.logback.core.db declared as ConnectionSource Modifier and Type Field Description protected ConnectionSource
DBAppenderBase. connectionSource
Methods in ch.qos.logback.core.db that return ConnectionSource Modifier and Type Method Description ConnectionSource
DBAppenderBase. getConnectionSource()
Methods in ch.qos.logback.core.db with parameters of type ConnectionSource Modifier and Type Method Description void
DBAppenderBase. setConnectionSource(ConnectionSource connectionSource)
-