Revision 43650 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/SQLBuilder.java

View differences:

SQLBuilder.java
217 217
        public TableNameBuilder table();
218 218
        public AlterTableBuilder drop_column(String columnName);
219 219
        public AlterTableBuilder add_column(String columnName, int type, int type_p, int type_s, boolean isPk, boolean isIndexed, boolean allowNulls, boolean isAutomatic, Object defaultValue);
220
        public AlterTableBuilder add_geometry_column(String columnName, int geom_type, int geom_subtype, IProjection proj, boolean isIndexed, boolean allowNulls);
220 221
        public AlterTableBuilder alter_column(String columnName, int type, int type_p, int type_s, boolean isPk, boolean isIndexed, boolean allowNulls, boolean isAutomatic, Object defaultValue);
222
        public AlterTableBuilder alter_geometry_column(String columnName, int geom_type, int geom_subtype, IProjection proj, boolean isIndexed, boolean allowNulls);
221 223
        public AlterTableBuilder rename_column(String source, String target);
222 224
        public List<String> toStrings();
223 225
    }
......
262 264
    
263 265
    public boolean supportSchemas();
264 266

  
267
    @Deprecated
265 268
    public String sqltype(int dataType, int p, int s);
266 269
    
270
    public String sqltype(int dataType, int p, int s, int geomType, int geomSubtype);
271
    
267 272
    public Object sqlgeometrytype(int type, int subtype);
268 273

  
269 274
    public Object sqlgeometrydimension(int type, int subtype);

Also available in: Unified diff