Changes between Version 9 and Version 10 of waue/2009/0626


Ignore:
Timestamp:
Jul 24, 2009, 11:32:01 AM (15 years ago)
Author:
waue
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • waue/2009/0626

    v9 v10  
    128128Scanner scanner = table.getScanner(new String[] { colomn_family+column_quolify });
    129129
     130// 法一
    130131RowResult rowResult = scanner.next();
    131 
    132 // 法一
    133132while (rowResult != null) {
    134133
     
    139138                                        .toBytes(colomn_family+column_quolify)));
    140139        rowResult = scanner.next();
    141 }
     140}// 法一完
    142141
    143142//法二
     
    148147                        + result.get(Bytes
    149148                                        .toBytes(colomn_family+column_quolify)));
    150 }
     149}// 法二完
    151150
    152151scanner.close();