Revision 17693 trunk/extensions/extOracleSpatial/src/es/prodevelop/cit/gvsig/fmap/drivers/jdbc/oracle/OracleSpatialWriter.java

View differences:

OracleSpatialWriter.java
114 114
        return true;
115 115
    }
116 116

  
117
    public boolean canWriteGeometry(int gvSIGgeometryType) {
118
        return true;
117
    public boolean canWriteGeometry(int type) {
118
    	
119
    	if (!isGeoCS) return true; 
120
    	
121
    	if ((type == FShape.ARC) || (type == FShape.CIRCLE)) {
122
    		return false;
123
    	} else {
124
    		return true;
125
    	}
119 126
    }
120 127

  
121 128
    public void preProcess() throws StartWriterVisitorException {

Also available in: Unified diff