I'm new to oracle database change notification. using this code i get exception when execution is on stmt.execute("SELECT e.EMPLOYEE_ID, e.FIRST_NAME, e.LAST_NAME FROM EMPLOYEES e WHERE e.EMPLOYEE_ID > 1");
need a help on this how to correct this.
@ApplicationScoped
public class ChangeRegistrar {
@Inject
Logger log;
@Inject
DatabaseChangeNotificationListener listener;
@Inject
DataSource dataSource;
private DatabaseChangeRegistration dcr;
private OracleConnection conn;
public synchronized void register() throws SQLException {
try {
this.conn = this.dataSource.getConnection().unwrap(OracleConnection.class);
Properties prop = new Properties();
prop.setProperty(OracleConnection.DCN_QUERY_CHANGE_NOTIFICATION, "true");
prop.setProperty(OracleConnection.DCN_BEST_EFFORT, "true");
prop.setProperty(OracleConnection.DCN_CLIENT_INIT_CONNECTION, "true");
this.dcr = this.conn.registerDatabaseChangeNotification(prop);
this.dcr.addListener(listener);
OracleStatement stmt = this.conn.createStatement().unwrap(OracleStatement.class);
stmt.setDatabaseChangeRegistration(this.dcr);
// ResultSet rs = stmt.executeQuery("select * from employees");
if (dcr != null && dcr.getState().equals(NotificationRegistration.RegistrationState.ACTIVE)) {
stmt.execute("SELECT e.EMPLOYEE_ID, e.FIRST_NAME, e.LAST_NAME FROM EMPLOYEES e WHERE e.EMPLOYEE_ID > 1");
ResultSet rs = stmt.getResultSet();
while (rs.next()) {
}
String[] tableNames = this.dcr.getTables();
for (int i = 0; i < tableNames.length; i++) {
System.out.println(tableNames[i] + " is part of the registration.");
}
rs.close();
} else {
log.fatal("Houston we got a problem here");
}
stmt.close();
} catch (SQLException ex) {
System.out.println(ex.getMessage());
unregister();
throw ex;
}
}
// rest of the code here
}
I find this code and makes it works but when i'm trying to use with quarkus and AgroalDatasource i got the same error i had with my code
also tried this solution but it's not working in my case