Source Code Cross Referenced for GenericSummaryDAO.java in  » Forum » JForum-2.1.8 » net » jforum » dao » generic » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Forum » JForum 2.1.8 » net.jforum.dao.generic 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Copyright (c) JForum Team
002:         * All rights reserved.
003:         * 
004:         * Redistribution and use in source and binary forms,
005:         * with or without modification, are permitted provided
006:         * that the following conditions are met:
007:         * 
008:         * 1) Redistributions of source code must retain the above
009:         * copyright notice, this list of conditions and the
010:         * following  disclaimer.
011:         * 2)  Redistributions in binary form must reproduce the
012:         * above copyright notice, this list of conditions and
013:         * the following disclaimer in the documentation and/or
014:         * other materials provided with the distribution.
015:         * 3) Neither the name of "Rafael Steil" nor
016:         * the names of its contributors may be used to endorse
017:         * or promote products derived from this software without
018:         * specific prior written permission.
019:         *
020:         * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
021:         * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
022:         * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
023:         * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
024:         * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
025:         * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
026:         * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
027:         * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
028:         * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
029:         * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
030:         * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
031:         * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
032:         * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
033:         * IN CONTRACT, STRICT LIABILITY, OR TORT
034:         * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
035:         * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
036:         * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
037:         *
038:         * The JForum Project
039:         * http://www.jforum.net
040:         */
041:        package net.jforum.dao.generic;
042:
043:        import java.sql.PreparedStatement;
044:        import java.sql.ResultSet;
045:        import java.sql.SQLException;
046:        import java.sql.Timestamp;
047:        import java.text.SimpleDateFormat;
048:        import java.util.ArrayList;
049:        import java.util.Date;
050:        import java.util.List;
051:
052:        import net.jforum.JForumExecutionContext;
053:        import net.jforum.dao.DataAccessDriver;
054:        import net.jforum.dao.SummaryDAO;
055:        import net.jforum.entities.Post;
056:        import net.jforum.exceptions.DatabaseException;
057:        import net.jforum.util.DbUtils;
058:        import net.jforum.util.preferences.ConfigKeys;
059:        import net.jforum.util.preferences.SystemGlobals;
060:
061:        /**
062:         * @author Franklin Samir (franklin (at) portaljava [dot] com)
063:         * @version $Id: GenericSummaryDAO.java,v 1.11 2006/08/23 02:13:41 rafaelsteil Exp $
064:         */
065:        public class GenericSummaryDAO extends AutoKeys implements  SummaryDAO {
066:            /**
067:             * @see net.jforum.dao.SummaryDAO#selectById(Date, Date)
068:             */
069:            public List selectLastPosts(Date firstDate, Date lastDate) {
070:                String query = SystemGlobals.getSql("SummaryDAO.selectPosts");
071:                PreparedStatement p = null;
072:                ResultSet rs = null;
073:                try {
074:                    p = JForumExecutionContext.getConnection()
075:                            .prepareStatement(query);
076:                    p.setTimestamp(1, new Timestamp(firstDate.getTime()));
077:                    p.setTimestamp(2, new Timestamp(lastDate.getTime()));
078:
079:                    List posts = new ArrayList();
080:                    rs = p.executeQuery();
081:
082:                    while (rs.next()) {
083:                        posts.add(this .fillPost(rs));
084:                    }
085:
086:                    return posts;
087:                } catch (SQLException e) {
088:                    throw new DatabaseException(e);
089:                } finally {
090:                    DbUtils.close(rs, p);
091:                }
092:            }
093:
094:            private Post fillPost(ResultSet rs) throws SQLException {
095:                Post post = new Post();
096:
097:                post.setId(rs.getInt("post_id"));
098:                post.setTopicId(rs.getInt("topic_id"));
099:                post.setForumId(rs.getInt("forum_id"));
100:                post.setUserId(rs.getInt("user_id"));
101:                Timestamp postTime = rs.getTimestamp("post_time");
102:                post.setTime(postTime);
103:                post.setSubject(rs.getString("post_subject"));
104:                post.setText(rs.getString("post_text"));
105:                post.setPostUsername(rs.getString("username"));
106:
107:                SimpleDateFormat df = new SimpleDateFormat(SystemGlobals
108:                        .getValue(ConfigKeys.DATE_TIME_FORMAT));
109:                post.setFormatedTime(df.format(postTime));
110:
111:                post.setKarma(DataAccessDriver.getInstance().newKarmaDAO()
112:                        .getPostKarma(post.getId()));
113:
114:                return post;
115:            }
116:
117:            public List listRecipients() {
118:                String query = SystemGlobals
119:                        .getSql("SummaryDAO.selectAllRecipients");
120:                PreparedStatement p = null;
121:                ResultSet rs = null;
122:                try {
123:                    p = JForumExecutionContext.getConnection()
124:                            .prepareStatement(query);
125:
126:                    List recipients = new ArrayList();
127:                    rs = p.executeQuery();
128:
129:                    String mail = null;
130:                    while (rs.next()) {
131:                        mail = rs.getString("user_email");
132:                        if (mail != null && !mail.trim().equals("")) {
133:                            recipients.add(mail);
134:                        }
135:                    }
136:
137:                    return recipients;
138:                } catch (SQLException e) {
139:                    throw new DatabaseException(e);
140:                } finally {
141:                    DbUtils.close(rs, p);
142:                }
143:            }
144:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.