Source Code Cross Referenced for CachedRowsetTest.java in  » Database-JDBC-Connection-Pool » mysql » testsuite » regression » 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 » Database JDBC Connection Pool » mysql » testsuite.regression 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         Copyright (C) 2002-2004 MySQL AB
003:
004:         This program is free software; you can redistribute it and/or modify
005:         it under the terms of version 2 of the GNU General Public License as 
006:         published by the Free Software Foundation.
007:
008:         There are special exceptions to the terms and conditions of the GPL 
009:         as it is applied to this software. View the full text of the 
010:         exception in file EXCEPTIONS-CONNECTOR-J in the directory of this 
011:         software distribution.
012:
013:         This program is distributed in the hope that it will be useful,
014:         but WITHOUT ANY WARRANTY; without even the implied warranty of
015:         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
016:         GNU General Public License for more details.
017:
018:         You should have received a copy of the GNU General Public License
019:         along with this program; if not, write to the Free Software
020:         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
021:
022:
023:
024:         */
025:        package testsuite.regression;
026:
027:        import java.lang.reflect.Method;
028:        import java.sql.ResultSet;
029:
030:        import javax.sql.RowSet;
031:
032:        import testsuite.BaseTestCase;
033:
034:        /**
035:         * Regression test cases for the ResultSet class.
036:         * 
037:         * @author Eric Herman
038:         */
039:        public class CachedRowsetTest extends BaseTestCase {
040:            /**
041:             * Creates a new CachedRowsetTest
042:             * 
043:             * @param name
044:             *            the name of the test to run
045:             */
046:            public CachedRowsetTest(String name) {
047:                super (name);
048:            }
049:
050:            /**
051:             * Runs all test cases in this test suite
052:             * 
053:             * @param args
054:             */
055:            public static void main(String[] args) {
056:                junit.textui.TestRunner.run(CachedRowsetTest.class);
057:            }
058:
059:            /**
060:             * Tests fix for BUG#5188, CachedRowSet errors using PreparedStatement. Uses
061:             * Sun's "com.sun.rowset.CachedRowSetImpl"
062:             * 
063:             * @throws Exception
064:             */
065:            public void testBug5188() throws Exception {
066:                String implClass = "com.sun.rowset.CachedRowSetImpl";
067:                Class c;
068:                Method populate;
069:                try {
070:                    c = Class.forName(implClass);
071:                } catch (ClassNotFoundException e) {
072:                    System.out.println("skipping testBug5188. Requires: "
073:                            + implClass);
074:                    return;
075:                }
076:                populate = c.getMethod("populate",
077:                        new Class[] { ResultSet.class });
078:
079:                try {
080:                    this .stmt.executeUpdate("DROP TABLE IF EXISTS testBug5188");
081:                    this .stmt.executeUpdate("CREATE TABLE testBug5188 "
082:                            + "(ID int NOT NULL AUTO_INCREMENT, "
083:                            + "datafield VARCHAR(64), " + "PRIMARY KEY(ID))");
084:
085:                    this .stmt
086:                            .executeUpdate("INSERT INTO testBug5188(datafield) "
087:                                    + "values('test data stuff !')");
088:
089:                    String sql = "SELECT * FROM testBug5188 where ID = ?";
090:                    this .pstmt = this .conn.prepareStatement(sql);
091:                    this .pstmt.setString(1, "1");
092:                    this .rs = this .pstmt.executeQuery();
093:
094:                    // create a CachedRowSet and populate it
095:                    RowSet cachedRowSet = (RowSet) c.newInstance();
096:                    // cachedRowSet.populate(rs);
097:                    populate.invoke(cachedRowSet, new Object[] { this .rs });
098:
099:                    // scroll through CachedRowSet ...
100:                    assertTrue(cachedRowSet.next());
101:                    assertEquals("1", cachedRowSet.getString("ID"));
102:                    assertEquals("test data stuff !", cachedRowSet
103:                            .getString("datafield"));
104:                    assertFalse(cachedRowSet.next());
105:                } finally {
106:                    this .stmt.executeUpdate("DROP TABLE IF EXISTS testBug5188");
107:                }
108:            }
109:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.