Re: minor correction in getting started guide

2008-06-26 Thread stack
From your first mail, you'd have me do this: Index: src/java/overview.html === --- src/java/overview.html (revision 671719) +++ src/java/overview.html (working copy) @@ -242,7 +242,7 @@ while(scanner.next(row, columns))

Re: minor correction in getting started guide

2008-06-26 Thread Shiraz Memon
oops, but rather: *System.out.println("Found row: " + row.getRow() + " with value: " + new String((byte[]) columns.get(columns.firstKey(;* will display *Found row: myRow with value: columnQualifier1 value!* Shiraz On Thu, Jun 26, 2008 at 10:53 AM, Shiraz Memon <[EMAIL PROTECTED]> wrote:

minor correction in getting started guide

2008-06-26 Thread Shiraz Memon
Hi, I found one mistake (although very minor) in MyClient.java class which is given as an example test case for beginners in getting started page. I suggest to replace the following line *new String(columns.get("myColumnFamily:columnQualifier1")));* with *new String((byte[])columns.get("myColum