Class DbRequest
- java.lang.Object
-
- io.opentelemetry.instrumentation.jdbc.internal.DbRequest
-
public abstract class DbRequest extends Object
-
-
Constructor Summary
Constructors Constructor Description DbRequest()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static DbRequestcreate(DbInfo dbInfo, String statement)static @Nullable DbRequestcreate(PreparedStatement statement)static @Nullable DbRequestcreate(Statement statement, String dbStatementString)abstract DbInfogetDbInfo()abstract @Nullable StringgetStatement()
-
-
-
Method Detail
-
create
public static @Nullable DbRequest create(PreparedStatement statement)
-
getDbInfo
public abstract DbInfo getDbInfo()
-
getStatement
public abstract @Nullable String getStatement()
-
-