Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
ncount=row1.c.getColumnCount();
for(int i=0;i<ncount;i++){
column=row1.c.getColumnMetadata(i);
columnName=column.getName();
String columnValue=(String)row1.c.getColumnValue(columnName);
if(columnValue.contains("0000")){
row1.c.setColumnValue(i, null);
}
}
Moreover am using dynamic schema for loading table from file. Kindly let me know how to achieve this.