Uses of Class
org.h2.message.Trace
-
Packages that use Trace Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.jdbcx Implementation of the extended JDBC API (package javax.sql).org.h2.message Trace (logging facility) and error message tool.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.result Implementation of row and internal result sets.org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.org.h2.util Internal utility classes. -
-
Uses of Trace in org.h2.command
Fields in org.h2.command declared as Trace Modifier and Type Field Description private Trace
Command. trace
The trace module.private Trace
CommandRemote. trace
-
Uses of Trace in org.h2.engine
Fields in org.h2.engine declared as Trace Modifier and Type Field Description private Trace
Database. trace
protected Trace
DbObject. trace
The trace module.private Trace
DelayedDatabaseCloser. trace
private Trace
SessionLocal. trace
private Trace
SessionRemote. trace
Methods in org.h2.engine that return Trace Modifier and Type Method Description Trace
Database. getTrace(int moduleId)
Get the trace object for the given module id.abstract Trace
Session. getTrace()
Get the trace objectTrace
SessionLocal. getTrace()
Trace
SessionRemote. getTrace()
-
Uses of Trace in org.h2.jdbc
Constructors in org.h2.jdbc with parameters of type Trace Constructor Description JdbcDatabaseMetaData(JdbcConnection conn, Trace trace, int id)
JdbcParameterMetaData(Trace trace, JdbcPreparedStatement prep, CommandInterface command, int id)
JdbcResultSetMetaData(JdbcResultSet rs, JdbcPreparedStatement prep, ResultInterface result, java.lang.String catalog, Trace trace, int id)
JdbcSavepoint(JdbcConnection conn, int savepointId, java.lang.String name, Trace trace, int id)
-
Uses of Trace in org.h2.jdbcx
Fields in org.h2.jdbcx declared as Trace Modifier and Type Field Description private Trace
JdbcDataSourceFactory. trace
Methods in org.h2.jdbcx that return Trace Modifier and Type Method Description (package private) Trace
JdbcDataSourceFactory. getTrace()
-
Uses of Trace in org.h2.message
Fields in org.h2.message declared as Trace Modifier and Type Field Description protected Trace
TraceObject. trace
The trace module used by this object.Fields in org.h2.message with type parameters of type Trace Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReferenceArray<Trace>
TraceSystem. traces
Methods in org.h2.message that return Trace Modifier and Type Method Description Trace
TraceSystem. getTrace(int moduleId)
Get or create a trace object for this module id.Trace
TraceSystem. getTrace(java.lang.String module)
Create a trace object for this module.Methods in org.h2.message with parameters of type Trace Modifier and Type Method Description protected void
TraceObject. setTrace(Trace trace, int type, int id)
Set the options to use when writing trace message. -
Uses of Trace in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as Trace Modifier and Type Field Description private Trace
MVTable. traceLock
-
Uses of Trace in org.h2.result
Fields in org.h2.result declared as Trace Modifier and Type Field Description private Trace
ResultRemote. trace
-
Uses of Trace in org.h2.store
Fields in org.h2.store declared as Trace Modifier and Type Field Description private Trace
FileLock. trace
The trace object. -
Uses of Trace in org.h2.util
Methods in org.h2.util that return Trace Modifier and Type Method Description Trace
CacheWriter. getTrace()
Get the trace writer.
-