MySQL Connector/J size='-1'>5.1.6

com.mysql.jdbc.profiler
Class LoggingProfilerEventHandler

java.lang.Object
  extended by com.mysql.jdbc.profiler.LoggingProfilerEventHandler
All Implemented Interfaces:
Extension, ProfilerEventHandler

public class LoggingProfilerEventHandler
extends java.lang.Object
implements ProfilerEventHandler

A profile event handler that just logs to the standard logging mechanism of the JDBC driver.


Constructor Summary
LoggingProfilerEventHandler()
           
 
Method Summary
 void consumeEvent(ProfilerEvent evt)
           
 void destroy()
          Called by the driver when this extension should release any resources it is holding and cleanup internally before the connection is closed.
 void init(Connection conn, java.util.Properties props)
          Called once per connection that wants to use the extension The properties are the same ones passed in in the URL or arguments to Driver.connect() or DriverManager.getConnection().
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoggingProfilerEventHandler

public LoggingProfilerEventHandler()
Method Detail

consumeEvent

public void consumeEvent(ProfilerEvent evt)
Specified by:
consumeEvent in interface ProfilerEventHandler

destroy

public void destroy()
Description copied from interface: Extension
Called by the driver when this extension should release any resources it is holding and cleanup internally before the connection is closed.

Specified by:
destroy in interface Extension

init

public void init(Connection conn,
                 java.util.Properties props)
          throws java.sql.SQLException
Description copied from interface: Extension
Called once per connection that wants to use the extension The properties are the same ones passed in in the URL or arguments to Driver.connect() or DriverManager.getConnection().

Specified by:
init in interface Extension
Parameters:
conn - the connection for which this extension is being created
props - configuration values as passed to the connection. Note that in order to support javax.sql.DataSources, configuration properties specific to an interceptor must be passed via setURL() on the DataSource. Extension properties are not exposed via accessor/mutator methods on DataSources.
Throws:
java.sql.SQLException - should be thrown if the the Extension can not initialize itself.

MySQL Connector/J size='-1'>5.1.6