*
* @param con
* @return
*/
public CaoApplication create(CaoConnection con) {
IConfig c = config;
if ( c == null) {
c = con.getDriver().getConfig();
}
if (c != null) {
// IConfig driverConfig = c.getConfig(con.getDriver().getName());
// if (driverConfig != null) {
IConfig appConfig = c.getConfig(getName());
if (appConfig != null) {
try {
return create(con, appConfig);
} catch (CaoException e) {
log.e(con.getDriver().getName(),getName(),e);