1 43 package net.jforum.dao.hsqldb; 44 45 import java.sql.Connection ; 46 import java.util.List ; 47 48 import net.jforum.dao.generic.GenericScheduledSearchIndexerDAO; 49 import net.jforum.dao.postgresql.PostgresqlScheduledSearchIndexerDAO; 50 51 public class HsqldbScheduledSearchIndexerDAO extends PostgresqlScheduledSearchIndexerDAO 52 { 53 private static GenericScheduledSearchIndexerDAO dao = new GenericScheduledSearchIndexerDAO(); 54 57 public List getPosts(int start, int count, int minPostId, int maxPostId, Connection conn) throws Exception 58 { 59 return dao.getPosts(minPostId, maxPostId, start, count, conn); 60 } 61 } 62 | Popular Tags |