blob: e2fa7f086961ef458e6e9538e7738e939152d43b [file] [log] [blame]
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
package org.eclipse.persistence.testing.tests.jpa.advanced;
import org.eclipse.persistence.queries.SQLCall;
import org.eclipse.persistence.sessions.SessionEvent;
import org.eclipse.persistence.sessions.SessionEventAdapter;
public class PostAcquireExclusiveConnectionSqlExecutorListener extends
SessionEventAdapter{
String sqlToExecute = "SELECT * FROM CMP3_VEGETABLE WHERE VEGETABLE_NAME='nonexistent'";
public void setSqlToExecute(String sqlString) {
this.sqlToExecute = sqlString;
}
public String getSqlToExecute() {
return this.sqlToExecute;
}
@Override
public void postAcquireExclusiveConnection(SessionEvent event) {
event.getSession().executeSelectingCall(new SQLCall(sqlToExecute));
}
}