Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.jdbc.extensions
Interface DriverInterceptor


Deprecated. 10.3.6.0

public interface DriverInterceptor

Interface for tracing all JDBC calls.


Field Summary
static String INTERFACE_NAME
          Deprecated.  

 

Method Summary
abstract  void postInvokeCallback(Object vendorObj, String methodName, Object[] params, Object ret)
          Deprecated. WebLogic Server will invoke this method AFTER it calls a method in the JDBC driver.
abstract  void postInvokeExceptionCallback(Object vendorObj, String methodName, Object[] params, Throwable error)
          Deprecated. WebLogic Server will invoke this method AFTER it calls a method in the JDBC driver.
abstract  Object preInvokeCallback(Object vendorObj, String methodName, Object[] params)
          Deprecated. WebLogic Server will invoke this method BEFORE it calls a method in the JDBC driver.

 

Field Detail

INTERFACE_NAME

static final String INTERFACE_NAME
Deprecated. 
See Also:
Constant Field Values

Method Detail

preInvokeCallback

Object preInvokeCallback(Object vendorObj,
                         String methodName,
                         Object[] params)
                         throws SQLException
Deprecated. 
WebLogic Server will invoke this method BEFORE it calls a method in the JDBC driver.
Parameters:
vendorObj - object who's method is being invoked
methodName - name of method being invoked
params - arguments to the method being invoked
Returns:
null proceed with method invokation
Throws:
SQLException - WLS will SKIP method invokation, and will rethrow this exception

postInvokeCallback

void postInvokeCallback(Object vendorObj,
                        String methodName,
                        Object[] params,
                        Object ret)
                        throws SQLException
Deprecated. 
WebLogic Server will invoke this method AFTER it calls a method in the JDBC driver.
Parameters:
vendorObj - object who's method was invoked
methodName - name of invoked method
params - arguments to the invoked method
ret - output of the invoked method
Throws:
SQLException - WLS will rethrow this exception

postInvokeExceptionCallback

void postInvokeExceptionCallback(Object vendorObj,
                                 String methodName,
                                 Object[] params,
                                 Throwable error)
                                 throws SQLException
Deprecated. 
WebLogic Server will invoke this method AFTER it calls a method in the JDBC driver.
Parameters:
vendorObj - object who's method was invoked
methodName - name of invoked method
params - arguments to the invoked method
error - exception thrown from the invoked method
Throws:
SQLException - WLS will rethrow this exception

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09