Java Doc for PooledDataSource.java in  » Database-ORM » XORM » org » xorm » datastore » 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 » Database ORM » XORM » org.xorm.datastore.sql 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.xorm.datastore.sql.PooledDataSource

PooledDataSource
public class PooledDataSource implements DataSource(Code)
Wraps a JDBC driver manager and provides a pooling of connections.
author:
   Scott Bendar
version:
   $Revision: 1.7 $


Field Summary
protected  LinkedListavailableConnections
    
protected  intconnCount
    
protected  Driverdriver
    
protected  Propertiesprops
    

Constructor Summary
public  PooledDataSource()
    

Method Summary
public  voidclose()
     Releases all available connections.
protected  voiddropConnection(PooledConnection conn)
    
public  booleangetCheckReturnedConnection()
     If set, instructs the connection to verify its valid when the caller is done with the connection (calls close).
public  ConnectiongetConnection()
     Gets a DB connection, actually a wrapper that allows the connection to be pooled.
public  ConnectiongetConnection(String userName, String password)
     This function is currently not implemented as it doesn't allow us to use the connections in the pool.
public  StringgetConnectionUrl()
    
public  StringgetDriverName()
    
public  longgetIdleCheck()
     Gets the amount of time in milliseconds a connection has been idle before the pool tests the connection to see if its still valid.
public  StringgetIdleCheckSQL()
     Gets a sql statement to be used to check a connection.
public  IntegergetIsolationLevel()
    
public  PrintWritergetLogWriter()
     The PooledDataSource class uses JDK 1.4 logging and ignores the log writer.
public  intgetLoginTimeout()
    
public  intgetMaxPool()
     The maximum number of connections created by the data source.
public  intgetMinPool()
     The minimum number of connections in the pool.
public  StringgetUser()
    
protected  voidmakeAvailable(PooledConnection conn)
     Makes the connection available again.
public  voidsetCheckReturnedConnection(boolean value)
     If set, instructs the connection to verify its valid when the caller is done with the connection (calls close).
public  voidsetConnectionUrl(String s)
    
public  voidsetDriverName(String s)
    
public  voidsetIdleCheck(long idle)
     Sets the amount of time in milliseconds a connection has been idle before the pool tests the connection to see if its still valid.
public  voidsetIdleCheckSQL(String sql)
     Sets a sql statement to be used to check a connection.
public  voidsetIsolationLevel(Integer isolationLevel)
     Sets the transaction isolation level.
public  voidsetLogWriter(PrintWriter logger)
    
public  voidsetLoginTimeout(int timeout)
     Sets the maximum time to wait in seconds for a connection before throwing an exception.
public  voidsetMaxPool(int i)
    
public  voidsetMinPool(int i)
    
public  voidsetPassword(String s)
     Sets the password to use when creating a db connection.
public  voidsetUser(String s)
    

Field Detail
availableConnections
protected LinkedList availableConnections(Code)



connCount
protected int connCount(Code)



driver
protected Driver driver(Code)



props
protected Properties props(Code)




Constructor Detail
PooledDataSource
public PooledDataSource()(Code)
Initializes a new pooled data source




Method Detail
close
public void close()(Code)
Releases all available connections.



dropConnection
protected void dropConnection(PooledConnection conn)(Code)
remove a connection from the pool



getCheckReturnedConnection
public boolean getCheckReturnedConnection()(Code)
If set, instructs the connection to verify its valid when the caller is done with the connection (calls close). This is used for debugging purposes only to help catch folks to return closed connections to the pool.



getConnection
public Connection getConnection() throws SQLException(Code)
Gets a DB connection, actually a wrapper that allows the connection to be pooled. The method first allocates a connection from the available pool, if there are none available it creates a new connection unless that would put it over the max pool size, in which case it forces the caller to wait. If the data source was configured with a loginTimeout value greater than 0, it will wait for loginTimeout seconds for a connection.



getConnection
public Connection getConnection(String userName, String password) throws SQLException(Code)
This function is currently not implemented as it doesn't allow us to use the connections in the pool. The workaround is to create a new data source with a different user and password. Should this just pass back an unpooled real connection?



getConnectionUrl
public String getConnectionUrl()(Code)



getDriverName
public String getDriverName()(Code)



getIdleCheck
public long getIdleCheck()(Code)
Gets the amount of time in milliseconds a connection has been idle before the pool tests the connection to see if its still valid. -1: Never check 0: Always check



getIdleCheckSQL
public String getIdleCheckSQL()(Code)
Gets a sql statement to be used to check a connection. If not specified, isConnectionClosed() is called instead.



getIsolationLevel
public Integer getIsolationLevel()(Code)



getLogWriter
public PrintWriter getLogWriter()(Code)
The PooledDataSource class uses JDK 1.4 logging and ignores the log writer.



getLoginTimeout
public int getLoginTimeout()(Code)



getMaxPool
public int getMaxPool()(Code)
The maximum number of connections created by the data source. Once the max is exceeded callers must wait for a connection to become available.



getMinPool
public int getMinPool()(Code)
The minimum number of connections in the pool. It will create this number of connections when the pool is first initialized and the pool will never shrink below this many connections.



getUser
public String getUser()(Code)



makeAvailable
protected void makeAvailable(PooledConnection conn)(Code)
Makes the connection available again. This is called by the PooledConnection class when the user chooses to close a connection.



setCheckReturnedConnection
public void setCheckReturnedConnection(boolean value)(Code)
If set, instructs the connection to verify its valid when the caller is done with the connection (calls close). This is used for debugging purposes only to help catch folks to return closed connections to the pool.



setConnectionUrl
public void setConnectionUrl(String s)(Code)
Set the URL used to connect to the DB



setDriverName
public void setDriverName(String s)(Code)
Set the name of the driver to load when connecting to the DB



setIdleCheck
public void setIdleCheck(long idle)(Code)
Sets the amount of time in milliseconds a connection has been idle before the pool tests the connection to see if its still valid. -1: Never check 0: Always check



setIdleCheckSQL
public void setIdleCheckSQL(String sql)(Code)
Sets a sql statement to be used to check a connection. If not specified, isConnectionClosed() is called instead.



setIsolationLevel
public void setIsolationLevel(Integer isolationLevel)(Code)
Sets the transaction isolation level. If null, no specific setting is made on a Connection instance; otherwise, the wrapped value is used.



setLogWriter
public void setLogWriter(PrintWriter logger)(Code)



setLoginTimeout
public void setLoginTimeout(int timeout)(Code)
Sets the maximum time to wait in seconds for a connection before throwing an exception.



setMaxPool
public void setMaxPool(int i)(Code)



setMinPool
public void setMinPool(int i)(Code)



setPassword
public void setPassword(String s)(Code)
Sets the password to use when creating a db connection. For security reasons, there is no way to get the password.



setUser
public void setUser(String s)(Code)
Sets the user name to pass when making a db connection



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.