Java Doc for JdbcConnectionDescriptor.java in » Database-ORM » db-ojb » org » apache » ojb » broker » metadata » 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
»
db ojb
»
org.apache.ojb.broker.metadata
Source Cross Reference
Class Diagram
Java Document (Java Doc)
java.lang
.Object
org.apache.ojb.broker.metadata
.DescriptorBase
org.apache.ojb.broker.metadata
.JdbcConnectionDescriptor
JdbcConnectionDescriptor
public
class JdbcConnectionDescriptor extends
DescriptorBase
implements
Serializable
,
XmlCapable
(Code)
JdbcConnectionDescriptor describes all relevant parameters of JDBC Connections used by the PersistenceBroker.
author:
Thomas Mahler
version:
$Id: JdbcConnectionDescriptor.java,v 1.31.2.4 2005/07/24 23:32:43 arminw Exp $
Field Summary
final
public
static int
AUTO_COMMIT_IGNORE_STATE
final
public
static int
AUTO_COMMIT_SET_FALSE
final
public
static int
AUTO_COMMIT_SET_TRUE_AND_TEMPORARY_FALSE
Constructor Summary
public
JdbcConnectionDescriptor
()
Method Summary
public
boolean
getBatchMode
()
public
ConnectionPoolDescriptor
getConnectionPoolDescriptor
()
Returns the connection pool descriptor.
public
DataSource
getDataSource
()
Returns the data source that this connection descriptor represents if any.
public
String
getDatasourceName
()
Gets the datasourceName.
public
String
getDbAlias
()
Returns the database alias name used by OJB.
public
String
getDbms
()
Returns the database platform name.
public
String
getDriver
()
Returns the driver name.
public
boolean
getEagerRelease
()
public
String
getJcdAlias
()
Get the alias name for this descriptor.
public
double
getJdbcLevel
()
Gets the jdbcLevel.
public
ObjectCacheDescriptor
getObjectCacheDescriptor
()
Returns the appropriate
ObjectCacheDescriptor
or
null
if not specified.
public
PBKey
getPBKey
()
Return a key to identify the connection descriptor.
public
String
getPassWord
()
Returns the database password.
public
String
getProtocol
()
Returns the database protocol.
public
SequenceDescriptor
getSequenceDescriptor
()
Return the associated
SequenceDescriptor
or
null
if not set.
public
String
getSubProtocol
()
Returns the database sub-protocol.
public
int
getUseAutoCommit
()
public
String
getUserName
()
Returns the database user name.
public
boolean
isDataSource
()
public
boolean
isDefaultConnection
()
public
boolean
isIgnoreAutoCommitExceptions
()
public
void
setBatchMode
(boolean flag)
public
void
setConnectionPoolDescriptor
(
ConnectionPoolDescriptor
cpd)
Sets the connection pool descriptor.
public
void
setDataSource
(
DataSource
dataSource)
Sets the data source that this connection descriptor represents.
public
void
setDatasourceName
(
String
datasourceName)
Sets the datasourceName.
public
void
setDbAlias
(
String
str)
Sets the database alias name.
public
void
setDbms
(
String
str)
Sets the database platform name.
public
void
setDefaultConnection
(boolean defaultConnection)
public
void
setDriver
(
String
str)
Set the database driver.
public
void
setEagerRelease
(boolean flag)
public
void
setIgnoreAutoCommitExceptions
(boolean ignoreAutoCommitExceptions)
public
void
setJcdAlias
(
String
jcdAlias)
Set an alias name for this descriptor.
public
void
setJdbcLevel
(
String
jdbcLevel)
Sets the jdbcLevel.
public
void
setJdbcLevel
(double jdbcLevel)
public
void
setObjectCacheDescriptor
(
ObjectCacheDescriptor
objectCacheDescriptor)
Sets the
ObjectCacheDescriptor
for representing connection/database.
public
void
setPassWord
(
String
str)
Sets the database password.
public
void
setProtocol
(
String
str)
Sets the database protocol.
public
void
setSequenceDescriptor
(
SequenceDescriptor
sequenceDescriptor)
Set the
SequenceDescriptor
for this connection descriptor.
public
void
setSubProtocol
(
String
str)
Sets the database sub-protocol.
public
void
setUseAutoCommit
(int useAutoCommit)
public
void
setUserName
(
String
str)
Sets the database user name.
public
String
toString
()
Returns a String representation of this class.
public
String
toXML
()
Field Detail
AUTO_COMMIT_IGNORE_STATE
final
public
static int AUTO_COMMIT_IGNORE_STATE
(Code)
AUTO_COMMIT_SET_FALSE
final
public
static int AUTO_COMMIT_SET_FALSE
(Code)
AUTO_COMMIT_SET_TRUE_AND_TEMPORARY_FALSE
final
public
static int AUTO_COMMIT_SET_TRUE_AND_TEMPORARY_FALSE
(Code)
Constructor Detail
JdbcConnectionDescriptor
public
JdbcConnectionDescriptor()
(Code)
Constructor declaration
Method Detail
getBatchMode
public
boolean getBatchMode()
(Code)
getConnectionPoolDescriptor
public
ConnectionPoolDescriptor
getConnectionPoolDescriptor()
(Code)
Returns the connection pool descriptor.
getDataSource
public
DataSource
getDataSource()
(Code)
Returns the data source that this connection descriptor represents if any. The data source or
null
getDatasourceName
public
String
getDatasourceName()
(Code)
Gets the datasourceName. Returns a String
getDbAlias
public
String
getDbAlias()
(Code)
Returns the database alias name used by OJB.
getDbms
public
String
getDbms()
(Code)
Returns the database platform name.
getDriver
public
String
getDriver()
(Code)
Returns the driver name.
getEagerRelease
public
boolean getEagerRelease()
(Code)
getJcdAlias
public
String
getJcdAlias()
(Code)
Get the alias name for this descriptor.
getJdbcLevel
public
double getJdbcLevel()
(Code)
Gets the jdbcLevel. Returns a String
getObjectCacheDescriptor
public
ObjectCacheDescriptor
getObjectCacheDescriptor()
(Code)
Returns the appropriate
ObjectCacheDescriptor
or
null
if not specified.
getPBKey
public
PBKey
getPBKey()
(Code)
Return a key to identify the connection descriptor.
getPassWord
public
String
getPassWord()
(Code)
Returns the database password.
getProtocol
public
String
getProtocol()
(Code)
Returns the database protocol.
getSequenceDescriptor
public
SequenceDescriptor
getSequenceDescriptor()
(Code)
Return the associated
SequenceDescriptor
or
null
if not set.
getSubProtocol
public
String
getSubProtocol()
(Code)
Returns the database sub-protocol.
getUseAutoCommit
public
int getUseAutoCommit()
(Code)
getUserName
public
String
getUserName()
(Code)
Returns the database user name.
isDataSource
public
boolean isDataSource()
(Code)
isDefaultConnection
public
boolean isDefaultConnection()
(Code)
isIgnoreAutoCommitExceptions
public
boolean isIgnoreAutoCommitExceptions()
(Code)
setBatchMode
public
void setBatchMode(boolean flag)
(Code)
setConnectionPoolDescriptor
public
void setConnectionPoolDescriptor(
ConnectionPoolDescriptor
cpd)
(Code)
Sets the connection pool descriptor.
setDataSource
public
void setDataSource(
DataSource
dataSource)
(Code)
Sets the data source that this connection descriptor represents.
Parameters:
dataSource - The data source
setDatasourceName
public
void setDatasourceName(
String
datasourceName)
(Code)
Sets the datasourceName.
Parameters:
datasourceName - The datasourceName to set
setDbAlias
public
void setDbAlias(
String
str)
(Code)
Sets the database alias name. These names you could find in the repository.dtd.
setDbms
public
void setDbms(
String
str)
(Code)
Sets the database platform name.
setDefaultConnection
public
void setDefaultConnection(boolean defaultConnection)
(Code)
setDriver
public
void setDriver(
String
str)
(Code)
Set the database driver.
setEagerRelease
public
void setEagerRelease(boolean flag)
(Code)
setIgnoreAutoCommitExceptions
public
void setIgnoreAutoCommitExceptions(boolean ignoreAutoCommitExceptions)
(Code)
setJcdAlias
public
void setJcdAlias(
String
jcdAlias)
(Code)
Set an alias name for this descriptor.
setJdbcLevel
public
void setJdbcLevel(
String
jdbcLevel)
(Code)
Sets the jdbcLevel. parse the string setting and check that it is indeed an integer.
Parameters:
jdbcLevel - The jdbcLevel to set
setJdbcLevel
public
void setJdbcLevel(double jdbcLevel)
(Code)
setObjectCacheDescriptor
public
void setObjectCacheDescriptor(
ObjectCacheDescriptor
objectCacheDescriptor)
(Code)
Sets the
ObjectCacheDescriptor
for representing connection/database.
setPassWord
public
void setPassWord(
String
str)
(Code)
Sets the database password.
setProtocol
public
void setProtocol(
String
str)
(Code)
Sets the database protocol.
setSequenceDescriptor
public
void setSequenceDescriptor(
SequenceDescriptor
sequenceDescriptor)
(Code)
Set the
SequenceDescriptor
for this connection descriptor.
setSubProtocol
public
void setSubProtocol(
String
str)
(Code)
Sets the database sub-protocol.
setUseAutoCommit
public
void setUseAutoCommit(int useAutoCommit)
(Code)
setUserName
public
void setUserName(
String
str)
(Code)
Sets the database user name.
toString
public
String
toString()
(Code)
Returns a String representation of this class.
toXML
public
String
toXML()
(Code)
Fields inherited from
org.apache.ojb.broker.metadata.DescriptorBase
final static long serialVersionUID
(Code)
(Java Doc)
Methods inherited from
org.apache.ojb.broker.metadata.DescriptorBase
public
void addAttribute(
String
attributeName,
String
attributeValue)
(Code)
(Java Doc)
public
String
getAttribute(
String
attributeName,
String
defaultValue)
(Code)
(Java Doc)
public
String
getAttribute(
String
attributeName)
(Code)
(Java Doc)
public
String
[] getAttributeNames()
(Code)
(Java Doc)
public
Map
getAttributes()
(Code)
(Java Doc)
public
String
toString()
(Code)
(Java Doc)
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.