Merge pull request #171 from akonczak/master

[DS-1435] fix for oracle db
This commit is contained in:
Hardy Pottinger
2013-01-18 15:00:40 -08:00

View File

@@ -1370,6 +1370,9 @@ public class DatabaseManager
try try
{ {
String schema = ConfigurationManager.getProperty("db.schema"); String schema = ConfigurationManager.getProperty("db.schema");
if(StringUtils.isBlank(schema)){
schema = null;
}
String catalog = null; String catalog = null;
int dotIndex = table.indexOf('.'); int dotIndex = table.indexOf('.');