• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

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]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic