Hi every one!
     Am very much new to Google app engine....
I was trying to read a particular row for specified
range and also trying to update it, but in that particular
row if any empty cell presents, the code just skipping
it.....

    My need is to write data's to specified range
even it contains empty cell....


*Is there any other way to avoid empty cell skipping?*
*
*
Please provide me some tips....

here is my code.....

*
...................................................................................................................................................................................
*
int j=0;
for(int i=1;i<16;i=i+2)
{
 query.setMinimumRow(start_row);
query.setMaximumRow(start_row);
query.setMinimumCol(i);
query.setMaximumCol(i);
//query.getRange();
System.out.println("start_row "+start_row+" i ");
if(i>1)
{
System.out.println("Entered to write 7 Cust Count values ... ");
    cellFeed=service.query(query, CellFeed.class);
for(CellEntry cell : cellFeed.getEntries())
{
String dummy=Integer.toString(cust_count[j]);
cell.changeInputValueLocal(dummy);
cell.update();
j++;
System.out.println("Updated Successfully....");
}
}
}
*
....................................................................................................................................................................................
*
*
*
*
*
*
*
*Thanks in Advance......*

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to