Package ee.widespace.forum

Examples of ee.widespace.forum.LastMessage


  try {
    ResultSet rset = stmt.executeQuery();
    try {
      while (rset.next()) {
      MainQuery   mq = new MainQuery();
      LastMessage lm = new LastMessage();
     
      lm = getLastMessageAuthor(rset.getInt(1) );
     
      mq.numbersOfMessages   = getMessageCount( rset.getInt(1) );
      mq.name                = rset.getString(2);
View Full Code Here


* Creation date: (6/13/2001 14:58:55 PM)
* @param forum ee.widespace.forum.Forum
*/
public  LastMessage getLastMessageAuthor( int forumID) throws SQLException {
 
  LastMessage lm = new LastMessage();
  String st = getLastMessageDate( forumID );
 
  if ( st == null ){
    lm.authorOfLastMessage = "not avaible";
    lm.dateOfLastMessage = "not avaible";
View Full Code Here

TOP

Related Classes of ee.widespace.forum.LastMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.