Package org.geotools.data.jdbc

Examples of org.geotools.data.jdbc.JDBCDataStore


    DataStore store = DataStoreFinder.getDataStore(parameters);
    if (store instanceof PostgisDataStore) {
      PostgisDataStore jdbcStore = (PostgisDataStore) store;
      jdbcStore.setFIDMapperFactory(new NonTypedPostgisFidMapperFactory(false));
    } else if (store instanceof JDBCDataStore) {
      JDBCDataStore jdbcStore = (JDBCDataStore) store;
      jdbcStore.setFIDMapperFactory(new NonTypedFidMapperFactory());
    }
    if (store == null) {
      StringBuilder availableStr = new StringBuilder();
      StringBuilder missingStr = new StringBuilder();
      Iterator<DataStoreFactorySpi> all = DataStoreFinder.getAllDataStores();
View Full Code Here

TOP

Related Classes of org.geotools.data.jdbc.JDBCDataStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.