• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

net.jforum.dao.generic.GenericLuceneDAO

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is a bug

/**
* @see net.jforum.dao.LuceneDAO#firstPostIdByDate(java.util.Date)
*/
public int firstPostIdByDate(Date date)
{
return this.getPostIdByDate(date, SystemGlobals.getSql("SearchModel.firstPostIdByDate"));
}

/**
* @see net.jforum.dao.LuceneDAO#lastPostIdByDate(java.util.Date)
*/
public int lastPostIdByDate(Date date)
{
return this.getPostIdByDate(date, SystemGlobals.getSql("SearchModel.lastPostIdByDate"));
}

private int getPostIdByDate(Date date, String query)
{
int postId = 0;

PreparedStatement p = null;
ResultSet rs = null;

try {
p = JForumExecutionContext.getConnection().prepareStatement(
SystemGlobals.getSql(query));
[originally posted on jforum.net by Exo7]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ouch..

Thanks for reporting it. I updated the downloadable packages.

Rafael
[originally posted on jforum.net by Rafael Steil]
 
permaculture is largely about replacing oil with people. And one tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic