org.hibernate.SessionEventListener.jdbcPrepareStatementStart()

Here are the examples of the java api org.hibernate.SessionEventListener.jdbcPrepareStatementStart() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : SessionEventListenerManagerImpl.java
with GNU General Public License v2.0
from lamsfoundation

@Override
public void jdbcPrepareStatementStart() {
    if (listenerList == null) {
        return;
    }
    for (SessionEventListener listener : listenerList) {
        listener.jdbcPrepareStatementStart();
    }
}