OracleConnection connection = new OracleConnection("src/connections.properties","connection1");
try{
connection.openConnection();
UserSession session = connection.openSession();
ArrayList<String> tbls = connection.getUserTables();
for(String table : tbls)logger.info("Table Found: "+table);
ResultSet results = connection.getSQLQueryResults("SELECT * FROM MILAN_MAP_POI",10);