Commit 146c1f6e 146c1f6e70b08307f014d1273f06d8a824cc3767 by Christian Gerdes

Han inte så mycket idag...

1 parent 9b2f29e6
...@@ -293,7 +293,7 @@ public class OraMon { ...@@ -293,7 +293,7 @@ public class OraMon {
293 // If we have containers, but we are not the CDB, then we are a PDB. 293 // If we have containers, but we are not the CDB, then we are a PDB.
294 // We should ask the CDB object for our data 294 // We should ask the CDB object for our data
295 if(isPDB && false) { 295 if(isPDB && false) {
296 // TODO: Find the CDB OraMon object, get the data we need from it's cached CON tables 296 getDataFromCDB();
297 } else { 297 } else {
298 // All other cases (CDB or an instance without containers) get the data from the database 298 // All other cases (CDB or an instance without containers) get the data from the database
299 299
...@@ -336,6 +336,10 @@ public class OraMon { ...@@ -336,6 +336,10 @@ public class OraMon {
336 // End thread safe 336 // End thread safe
337 } 337 }
338 338
339 public void getDataFromCDB() {
340 // TODO
341 }
342
339 public Throwable getLastEx() { 343 public Throwable getLastEx() {
340 return lastEx; 344 return lastEx;
341 } 345 }
......