Package com.lichtfragmente.beans

Examples of com.lichtfragmente.beans.CommentBean


                                                           "WHERE c.imageid=? ORDER BY c.date DESC");
                stmt.setInt(1,imageid);
                ResultSet result=stmt.executeQuery();

                while (result.next()) {
                    CommentBean temp=new CommentBean();

                    temp.setContent(GlobalHelpers.nl2br(result.getString(1)));
                    temp.setDate(result.getTimestamp(2));
                    temp.getUserBean().setName(result.getString(3));
                    temp.setUserid(result.getInt(4));

                    list.add(temp);
                }

                result.close();
View Full Code Here

TOP

Related Classes of com.lichtfragmente.beans.CommentBean

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.