Source Code Cross Referenced for DBRowUpdateException.java in  » J2EE » Enhydra-Application-Framework » com » lutris » appserver » server » sql » 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 » J2EE » Enhydra Application Framework » com.lutris.appserver.server.sql 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Enhydra Java Application Server Project
03:         * 
04:         * The contents of this file are subject to the Enhydra Public License
05:         * Version 1.1 (the "License"); you may not use this file except in
06:         * compliance with the License. You may obtain a copy of the License on
07:         * the Enhydra web site ( http://www.enhydra.org/ ).
08:         * 
09:         * Software distributed under the License is distributed on an "AS IS"
10:         * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See 
11:         * the License for the specific terms governing rights and limitations
12:         * under the License.
13:         * 
14:         * The Initial Developer of the Enhydra Application Server is Lutris
15:         * Technologies, Inc. The Enhydra Application Server and portions created
16:         * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17:         * All Rights Reserved.
18:         * 
19:         * Contributor(s):
20:         * 
21:         * $Id: DBRowUpdateException.java,v 1.1 2007-01-24 16:59:09 sinisa Exp $
22:         */
23:        package com.lutris.appserver.server.sql;
24:
25:        /**
26:         * DBRowUpdateException is thrown when a CoreDO update fails.
27:         *
28:         * Two values are used to uniquely identify a row in a table:
29:         *    oId and version.
30:         * The executeUpdate() method creates an SQL UPDATE command
31:         * to write the new values in a CoreDO object back to
32:         * the correct row in the database.
33:         * The row is identifed by the oId and version values specified
34:         * in the WHERE-clause of the UPDATE command.
35:         *
36:         * So, if no row has the specified oId and version combination,
37:         * the UPDATE will fail, and report that 0 rows were updated.
38:         * Note: other database problems (e.g. disk full) can also cause
39:         * an UPDATE to fail, but these are rare.
40:         *
41:         * When versioning == true, the executeUpdate() method will increment
42:         * the version number in both the CoreDO object and in the updated row.
43:         *
44:         * When the same oId/version combination is used twice to create
45:         * two CoreDO objects (A and B) that refer to the same row,
46:         * it is possible for the version number of one of those objects
47:         * to become out-of-sync with the row in the database.
48:         * Object A is updated, and the version number in object A and
49:         * in the row is incremented.
50:         * When an attempt is made to update object B, the version number in
51:         * object B no longer matches the row in the database,
52:         * so the row is not found, and the update has no effect
53:         * (zero rows are updated).
54:         * In this case, the CoreDO.executeUpdate() method throws
55:         * a DBRowUpdateException describing the problem.
56:         *
57:         * The application code that catches this exception
58:         * should probably reload the Data Object from the database.
59:         *
60:         * @version	$Revision: 1.1 $
61:         * @see 	CoreDO
62:         * @author	Jay Gunter
63:         */
64:        public class DBRowUpdateException extends java.sql.SQLException {
65:
66:            /**
67:             * Construct a exception without a specified cause.
68:             *
69:             * @param msg The message associated with the exception.
70:             */
71:            public DBRowUpdateException(String msg) {
72:                super (msg);
73:            }
74:
75:            public DBRowUpdateException(String msg, Exception e) {
76:                super(msg);
77:            }
78:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.