if(TextParser.isNotEmpty(begintime))
if("oracle".equals(databaseType))
SSQLClause = SSQLClause + " and logintime >=to_date('" + begintime.trim() + "','yyyy-mm-dd hh24:mi:ss')";
logger.debug(SSQLClause);
} else
if("
informix".equals(databaseType))
SSQLClause = SSQLClause + " and logintime >=to_date('" + begintime.trim() + "','%Y-%m-%d %H:%M:%S')";
logger.debug(SSQLClause);
}
if(TextParser.isNotEmpty(endtime))
if("oracle".equals(databaseType))
SSQLClause = SSQLClause + " and logintime<=to_date('" + endtime.trim() + "','yyyy-mm-dd hh24:mi:ss')";
logger.debug(SSQLClause);
} else
if("informix".equals(databaseType))
SSQLClause = SSQLClause + " and logintime<=to_date('" + endtime.trim() + "','%Y-%m-%d %H:%M:%S')";
logger.debug(SSQLClause);
}