Java Doc for DB2DataStoreFactory.java in  » GIS » GeoTools-2.4.1 » org » geotools » data » db2 » 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 » GIS » GeoTools 2.4.1 » org.geotools.data.db2 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geotools.data.AbstractDataStoreFactory
      org.geotools.data.db2.DB2DataStoreFactory

DB2DataStoreFactory
public class DB2DataStoreFactory extends AbstractDataStoreFactory implements DataStoreFactorySpi(Code)
Implements the DataStoreFactorySpi interface to create an instance of a DB2DataStore.
author:
   David Adler - IBM Corporation


Field Summary
final static  Param[]DB2PARMS
    
final public static  StringDRIVERNAME
    
final public static  ParamMAXCONN
    
final public static  ParamMINCONN
    
final public static  ParamVALIDATECONN
    


Method Summary
public  booleancanProcess(Map params)
     Check whether the parameter list passed identifies it as a request for a DB2DataStore.

Most critical is the 'dbtype' parameter which must have the value 'DB2'. If it is, then the remaining parameter values can be checked.


Parameters:
  params - Key/Value parameter list containing values required toidentify a request for a DB2DataStore and remaining values toidentify the database to be connected to.
public  DataStorecreateDataStore(Map params)
     Constructs a DB2 data store using the params. If the port number is zero we will try to use the JDBC type 2 driver and if the port number is non-zer, we will try to use the JDBC type 4 driver
Parameters:
  params - The full set of information needed to construct a livedata source.
public  DataStorecreateNewDataStore(Map params)
     Creating a new DB2 database is not supported.
Parameters:
  params - Doesn't much matter what this contains.
public static  ManageableDataSourcegetDefaultDataSource(String url, String user, String passwd, int maxActive, int minIdle, boolean validate)
    
public  StringgetDescription()
     Provide a String description of this data store.
public  StringgetDisplayName()
     Name suitable for display to end user.
public static  StringgetJDBCUrl(String host, int port, String database)
    
public  Param[]getParametersInfo()
     Returns the array of parameters used by DB2.
public  booleanisAvailable()
     Check whether the DB2 JDBC type 4 driver is found in the classpath.

Field Detail
DB2PARMS
final static Param[] DB2PARMS(Code)



DRIVERNAME
final public static String DRIVERNAME(Code)



MAXCONN
final public static Param MAXCONN(Code)



MINCONN
final public static Param MINCONN(Code)



VALIDATECONN
final public static Param VALIDATECONN(Code)





Method Detail
canProcess
public boolean canProcess(Map params)(Code)
Check whether the parameter list passed identifies it as a request for a DB2DataStore.

Most critical is the 'dbtype' parameter which must have the value 'DB2'. If it is, then the remaining parameter values can be checked.


Parameters:
  params - Key/Value parameter list containing values required toidentify a request for a DB2DataStore and remaining values toidentify the database to be connected to. true if dbtype equals DB2, and contains keys for host, user,passwd, and database.



createDataStore
public DataStore createDataStore(Map params) throws IOException(Code)
Constructs a DB2 data store using the params. If the port number is zero we will try to use the JDBC type 2 driver and if the port number is non-zer, we will try to use the JDBC type 4 driver
Parameters:
  params - The full set of information needed to construct a livedata source. Should have dbtype equal to DB2, as well as host,user, passwd, database, and table schema. The created DataSource, this may be null if the requiredresource was not found or if insufficent parameters were given.Note that canProcess() should have returned false if theproblem is to do with insuficent parameters.
throws:
  IOException - See DataSourceException
throws:
  DataSourceException - Thrown if there were any problems creatingor connecting the datasource.



createNewDataStore
public DataStore createNewDataStore(Map params) throws UnsupportedOperationException(Code)
Creating a new DB2 database is not supported.
Parameters:
  params - Doesn't much matter what this contains. DataStore But will always throw an exception
throws:
  UnsupportedOperationException - Cannot create new database



getDefaultDataSource
public static ManageableDataSource getDefaultDataSource(String url, String user, String passwd, int maxActive, int minIdle, boolean validate) throws DataSourceException(Code)



getDescription
public String getDescription()(Code)
Provide a String description of this data store. the data store description.



getDisplayName
public String getDisplayName()(Code)
Name suitable for display to end user.

A non localized display name for this data store type.

A short name suitable for display in a user interface.



getJDBCUrl
public static String getJDBCUrl(String host, int port, String database)(Code)
Returns the JDBC url used for connecting to a specific database



getParametersInfo
public Param[] getParametersInfo()(Code)
Returns the array of parameters used by DB2. Param[] Array of parameters.



isAvailable
public boolean isAvailable()(Code)
Check whether the DB2 JDBC type 4 driver is found in the classpath.

If it isn't, there is a problem since the FactoryFinder found the DB2DataStoreFactory but there is no driver to connect to a DB2 database.

The classpath should have db2jcc.jar and db2jcc_license_cu.jar

true if a DB2 driver is available for the DB2DataStore toconnect to a DB2 database.



Methods inherited from org.geotools.data.AbstractDataStoreFactory
public boolean canProcess(Map params)(Code)(Java Doc)
public String getDisplayName()(Code)(Java Doc)
public Map getImplementationHints()(Code)(Java Doc)
public ParameterDescriptorGroup getParameters()(Code)(Java Doc)
public boolean isAvailable()(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.