We have OIM APIs to get connection to OIM DB and we can fire up a query to get data from OIM DB tables.
/**
* OIM DB Table: UPA_UD_FORMFIELDS
*Column Name: OLD_VALUE
*/
String query =
"select * from UPA_UD_FORMFIELDS";
String field_old_value = resultSet.getString("OLD_VALUE");
System.out.println("field_old_value: "+field_old_value);
List of OIM DB tables:
http://www.reachdba.com/showthread.php?701-OIM-List-of-Tables-and-Description
/**
* OIM DB Table: UPA_UD_FORMFIELDS
*Column Name: OLD_VALUE
*/
String query =
"select * from UPA_UD_FORMFIELDS";
Connection connection = Platform.getOperationalDS().getConnection();
PreparedStatement prepared_statement = connection.prepareStatement(query);
ResultSet resultSet = prepared_statement.executeQuery();
System.out.println("field_old_value: "+field_old_value);
List of OIM DB tables:
http://www.reachdba.com/showthread.php?701-OIM-List-of-Tables-and-Description
No comments:
Post a Comment