Revision 47580 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.sqlite/org.gvsig.sqlite.provider/src/main/java/org/gvsig/sqlite/dal/operations/SQLiteFetchFeatureTypeOperation.java

View differences:

SQLiteFetchFeatureTypeOperation.java
4 4
import java.sql.ResultSet;
5 5
import java.sql.ResultSetMetaData;
6 6
import java.sql.SQLException;
7
import java.util.Collection;
8
import java.util.Collections;
7 9
import java.util.HashMap;
8 10
import java.util.List;
9 11
import java.util.Map;
......
219 221
            LOGGER.warn("Can't read metadata from table '"+table+"'.",ex);
220 222
        }
221 223
    }
224

  
225
    @Override
226
    protected List<String> getPrimaryKeysFromInformationSchema(JDBCConnection conn) throws SQLException {
227
        return Collections.EMPTY_LIST;
228
    }
229

  
230
    @Override
231
    public String getSQLToRetrievePrimaryKeysFromInformationSchema() throws SQLException {
232
        return null;
233
    }
234
    
235
    
236
    
237
    
222 238
}

Also available in: Unified diff