Java Doc for BrokerConnection.java in  » Database-ORM » ORBroker » net » sourceforge » orbroker » 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 ORM » ORBroker » net.sourceforge.orbroker 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sourceforge.orbroker.BrokerConnection

All known Subclasses:   net.sourceforge.orbroker.QueryableConnection,
BrokerConnection
abstract class BrokerConnection (Code)
An abstract connection wrapper.
author:
   Nils Kilden-Pedersen



Constructor Summary
protected  BrokerConnection(Broker broker, Connection connection)
     Create BrokerConnection with external JDBC connection.
protected  BrokerConnection(Broker broker, Integer isolationLevel)
     Create BrokerConnection with a Broker connection.

Method Summary
final  voidaddContext(ConnectionContext addContext)
     Add context parameters.
final public  voidaddStatement(String id, String sql)
     Add temporary statement.
final public  voidaddStatement(String id, String sql, String resultObjectId)
     Add temporary statement.
Parameters:
  id - The statement id.
Parameters:
  sql - The SQL statement
Parameters:
  resultObjectId - The result-object id as defined in the XML configuration file.
final protected  voiddropConnection()
     Release connection, and close if necessary.
final protected  voidfinalize()
     Finalize.
final protected  ConnectiongetActiveConnection()
    
abstract protected  StringgetClosedConnectionMessage()
    
final protected  ConnectionContextgetConnectionContext()
    
abstract protected  StringgetFinalizeWarning()
    
final public  ObjectgetParameter(String name)
     Get parameter. Used to retrieve OUT/INOUT parameters from stored procedures. Both input and output parameters are stored in the same context, so any parameter set using BrokerConnection.setParameter(String,Object) will be available with this method.
protected  StatementgetStatement(String statementID)
     Return the statement.
final protected  StringgetTransactionIsolationText()
    
final protected  booleanisAutoCommit()
    
final protected  ExecutablenewExecutable(Transaction transaction)
    
protected  booleanretryFailedStatement(SQLException e)
     Retry is guaranteed to return true 0 or 1 times only, so it can be used recursively without looping infinitely.
abstract protected  voidsetConnectionProperties()
    
final public  voidsetParameter(String name, Object value)
     Set named parameter.
final public  voidsetTextReplacement(String key, String value)
     Set a text replacement value.
final public  voidsetTextReplacements(Properties textReplacements)
     Set text replacement values.
abstract protected  booleanshouldConnectionClose()
    
final protected  booleansupportsBatch()
    
final protected  booleansupportsScrollable()
    
final protected  voidthrowException(SQLException source)
     Determine exception type and throw exception.


Constructor Detail
BrokerConnection
protected BrokerConnection(Broker broker, Connection connection)(Code)
Create BrokerConnection with external JDBC connection. Will not retry a stale connection.
Parameters:
  broker -
Parameters:
  connection -



BrokerConnection
protected BrokerConnection(Broker broker, Integer isolationLevel)(Code)
Create BrokerConnection with a Broker connection. Will retry a stale connection.
Parameters:
  broker -
Parameters:
  isolationLevel -




Method Detail
addContext
final void addContext(ConnectionContext addContext)(Code)
Add context parameters.
Parameters:
  addContext - The context to add.



addStatement
final public void addStatement(String id, String sql) throws BrokerException, ConfigurationException(Code)
Add temporary statement.
Parameters:
  id - The statement id.
Parameters:
  sql - The SQL statement
throws:
  BrokerException -
throws:
  ConfigurationException -



addStatement
final public void addStatement(String id, String sql, String resultObjectId) throws BrokerException, ConfigurationException(Code)
Add temporary statement.
Parameters:
  id - The statement id.
Parameters:
  sql - The SQL statement
Parameters:
  resultObjectId - The result-object id as defined in the XML configuration file.
throws:
  BrokerException -
throws:
  ConfigurationException -



dropConnection
final protected void dropConnection()(Code)
Release connection, and close if necessary.



finalize
final protected void finalize()(Code)
Finalize.
See Also:   java.lang.Object.finalize



getActiveConnection
final protected Connection getActiveConnection()(Code)



getClosedConnectionMessage
abstract protected String getClosedConnectionMessage()(Code)



getConnectionContext
final protected ConnectionContext getConnectionContext()(Code)



getFinalizeWarning
abstract protected String getFinalizeWarning()(Code)



getParameter
final public Object getParameter(String name)(Code)
Get parameter. Used to retrieve OUT/INOUT parameters from stored procedures. Both input and output parameters are stored in the same context, so any parameter set using BrokerConnection.setParameter(String,Object) will be available with this method. Also if a stored procedure has an output parameter that needs to be used as input in another SQL statements, it's immediately available, i.e. there's no need to code like this: txn.setParameter("parm", txn.getParameter("parm"));
Parameters:
  name - parameter name parameter value



getStatement
protected Statement getStatement(String statementID) throws BrokerException(Code)
Return the statement. Give preference to any locally defined statements.
Parameters:
  statementID - The statement with the given id
throws:
  BrokerException -



getTransactionIsolationText
final protected String getTransactionIsolationText()(Code)



isAutoCommit
final protected boolean isAutoCommit()(Code)



newExecutable
final protected Executable newExecutable(Transaction transaction)(Code)



retryFailedStatement
protected boolean retryFailedStatement(SQLException e)(Code)
Retry is guaranteed to return true 0 or 1 times only, so it can be used recursively without looping infinitely.
Parameters:
  e - exception true if statement should be retried



setConnectionProperties
abstract protected void setConnectionProperties() throws SQLException(Code)



setParameter
final public void setParameter(String name, Object value)(Code)
Set named parameter.
Parameters:
  name - parameter name
Parameters:
  value - parameter value



setTextReplacement
final public void setTextReplacement(String key, String value)(Code)
Set a text replacement value. This will replace a {{key}} string with the value. This will override any value set on Broker.
Parameters:
  key - Text replacement key
Parameters:
  value - Text replacement value
See Also:   BrokerConnection.setTextReplacements(Properties)



setTextReplacements
final public void setTextReplacements(Properties textReplacements)(Code)
Set text replacement values. This will replace all {{key}} type properties in an sql-statement with the values. This will override any value set on Broker.
Parameters:
  textReplacements - The replacement values to set.
See Also:   BrokerConnection.setTextReplacement(String,String)



shouldConnectionClose
abstract protected boolean shouldConnectionClose()(Code)



supportsBatch
final protected boolean supportsBatch()(Code)



supportsScrollable
final protected boolean supportsScrollable()(Code)



throwException
final protected void throwException(SQLException source) throws BrokerException, ConstraintException, DeadlockException(Code)
Determine exception type and throw exception.
Parameters:
  source - SQLException
throws:
  BrokerException -
throws:
  ConstraintException -
throws:
  DeadlockException -



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.