Example #1
0
 public List<SimpleItem> getPeriod(String query) {
   String sql = "select period_id as id, name from dbo.period_type";
   String where = " where lower(name) like ?";
   return ems.getComboList(sql, where, query);
 }
Example #2
0
 public List<SimpleItem> getCalendar(String query) {
   String sql = "select calendar_id as id, name from dbo.calendar_type";
   String where = " where lower(name) like ?";
   return ems.getComboList(sql, where, query);
 }
Example #3
0
 public List<SimpleItem> getTypeMA(String query) {
   String sql = "select id, algorithm_name as name from dbo.mo_WebGet_ajaxAlgorithm_v";
   String where = " where lower(algorithm_name) like ?";
   return ems.getComboList(sql, where, query);
 }