Skip to content

Commit a255fd6

Browse files
authored
Rename JDBI to JDBC (#31)
1 parent 0e197fd commit a255fd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

oracle-10.x-plugin/src/main/java/io/skywalking/apm/plugin/jdbc/oracle/PreparedStatementExecuteMethodsInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public final void handleMethodException(EnhancedInstance objInst, Method method,
9292
}
9393

9494
private String buildOperationName(ConnectionInfo connectionInfo, String methodName, String statementName) {
95-
return connectionInfo.getDBType() + "/JDBI/" + statementName + "/" + methodName;
95+
return connectionInfo.getDBType() + "/JDBC/" + statementName + "/" + methodName;
9696
}
9797

9898

oracle-10.x-plugin/src/main/java/io/skywalking/apm/plugin/jdbc/oracle/StatementExecuteMethodsInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ public final Object afterMethod(EnhancedInstance objInst, Method method, Object[
7373
}
7474

7575
private String buildOperationName(ConnectionInfo connectionInfo, String methodName, String statementName) {
76-
return connectionInfo.getDBType() + "/JDBI/" + statementName + "/" + methodName;
76+
return connectionInfo.getDBType() + "/JDBC/" + statementName + "/" + methodName;
7777
}
7878
}

0 commit comments

Comments
 (0)