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


001:        /*
002:         *    GeoTools - OpenSource mapping toolkit
003:         *    http://geotools.org
004:         *    (C) 2003-2006, GeoTools Project Managment Committee (PMC)
005:         *    
006:         *    This library is free software; you can redistribute it and/or
007:         *    modify it under the terms of the GNU Lesser General Public
008:         *    License as published by the Free Software Foundation;
009:         *    version 2.1 of the License.
010:         *
011:         *    This library is distributed in the hope that it will be useful,
012:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014:         *    Lesser General Public License for more details.
015:         */
016:        package org.geotools.data.jdbc;
017:
018:        import java.io.IOException;
019:        import java.sql.Connection;
020:        import java.sql.ResultSet;
021:        import java.sql.SQLException;
022:        import java.util.logging.Level;
023:
024:        import javax.sql.DataSource;
025:
026:        import org.geotools.data.jdbc.datasource.ManageableDataSource;
027:        import org.geotools.data.jdbc.fidmapper.FIDMapperFactory;
028:        import org.geotools.feature.AttributeType;
029:
030:        /**
031:         * This JDBCDataStore is able to take advantage of additonal functionality
032:         * provided by JDBC2 level drivers - for example ConnectionPools.
033:         * 
034:         * <p>
035:         * This class provides a default implementation of a JDBC data store. Support
036:         * for vendor specific JDBC data stores can be easily added to Geotools by
037:         * subclassing this class and overriding the hooks provided.
038:         * </p>
039:         * 
040:         * <p>
041:         * At a minimum subclasses should implement the following methods:
042:         * 
043:         * <ul>
044:         * <li>
045:         * {@link #buildAttributeType(ResultSet) buildAttributeType(ResultSet)} - This
046:         * should be overriden to construct an attribute type that represents any
047:         * column types not supported by the default implementation, such as geometry
048:         * columns.
049:         * </li>
050:         * <li>
051:         * {@link #getGeometryAttributeIO(AttributeType, QueryData)
052:         * getGeometryAttributeIO(AttributeType, QueryData)}  - Should be overriden to
053:         * provide a way to read/write geometries into the format of the database
054:         * </li>
055:         * </ul>
056:         * </p>
057:         * 
058:         * <p>
059:         * Additionally subclasses can optionally override the following:
060:         * 
061:         * <ul>
062:         * <li>
063:         * Use a specific FIDMapperFactory by overriding the {@link
064:         * #buildFIDMapperFactory(JDBCDataStoreConfig)
065:         * buildFIDMapperFactory(JDBCDataStoreConfig)} method, and eventually disallow
066:         * user overrides by throwing an {@link
067:         * java.lang.UnsupportedOperationException UnsupportedOperationException} in
068:         * the {@link #setFIDMapperFactory(FIDMapperFactory) setFidMapperFactory()}
069:         * method.
070:         * </li>
071:         * <li>
072:         * {@link #allowTable(String) allowTable} - Used to determine whether a table
073:         * name should be exposed as a feature type.
074:         * </li>
075:         * <li>
076:         * {@link #determineSRID(String,String) determineSRID} - Used to determine the
077:         * SpatialReference ID of a geometry column in a table.
078:         * </li>
079:         * <li>
080:         * {@link #buildSQLQuery(String,AttributeType[],Filter,boolean)
081:         * buildSQLQuery()} - Sub classes can override this to build a custom SQL
082:         * query.
083:         * </li>
084:         * <li>
085:         * {@link #getResultSetType(boolean) getResultSetType} if the standard result
086:         * set type is not satisfactory/does not work with a normal FORWARD_ONLY
087:         * resultset type
088:         * </li>
089:         * <li>
090:         * {@link #getConcurrency(boolean) getConcurrency} to set the level of
091:         * concurrency for the result set used to read/write the database
092:         * </li>
093:         * </ul>
094:         * </p>
095:         * 
096:         * <p>
097:         * Additionally subclasses may want to set the value of:
098:         * 
099:         * <ul>
100:         * <li>
101:         * sqlNameEscape - character (String) to surround names of SQL objects to
102:         * support mixed-case and non-English names.
103:         * </li>
104:         * </ul>
105:         * </p>
106:         * 
107:         * @author Amr Alam, Refractions Research
108:         * @author Jody Garnett, Refractions Research
109:         * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/jdbc/src/main/java/org/geotools/data/jdbc/JDBC2DataStore.java $
110:         */
111:        public abstract class JDBC2DataStore extends JDBC1DataStore {
112:
113:            protected DataSource dataSource;
114:
115:            /**
116:             * Construct a JDBCDataStore with ConnectionPool and associated
117:             * configuration.
118:             *
119:             * @param connectionPool
120:             * @param config
121:             *
122:             * @throws IOException
123:             */
124:            public JDBC2DataStore(DataSource dataSource,
125:                    JDBCDataStoreConfig config) throws IOException {
126:                super (config);
127:                this .dataSource = dataSource;
128:            }
129:
130:            /**
131:             * Create a connection for your JDBC1 database
132:             */
133:            protected Connection createConnection() throws SQLException {
134:                return dataSource.getConnection();
135:            }
136:
137:            protected void finalize() throws Throwable {
138:                if (dataSource != null) {
139:                    LOGGER
140:                            .severe("There's code using JDBC based datastore and "
141:                                    + "not disposing them. This may lead to temporary loss of database connections. "
142:                                    + "Please make sure all data access code calls DataStore.dispose() "
143:                                    + "before freeing all references to it");
144:                    dispose();
145:                }
146:
147:            }
148:
149:            public void dispose() {
150:                if (dataSource != null
151:                        && dataSource instanceof  ManageableDataSource) {
152:                    try {
153:                        ManageableDataSource mds = (ManageableDataSource) dataSource;
154:                        dataSource = null;
155:                        mds.close();
156:                    } catch (SQLException e) {
157:                        // it's ok, we did our best..
158:                        LOGGER.log(Level.FINE, "Could not close dataSource", e);
159:                    }
160:                }
161:            }
162:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.