Just unpack the zip file and you should find the jar files in the lib/java
subdirectory.

2013/7/23 Ramakrishna Kc <[email protected]>

> From where u get the hypertable.jar ?? I downloaded hypertable zip file
> from http://www.hypertable.com. Then I extracted that .zip file. In that
> i searched a lot, I dint get the hypertable<current version>.jar file.In
> their site, They just given add  hypertable<current version>.jar file to
> the classpath. There I'm confused. Please tell me step by step to set
> classpath to hypertable<current version>.jar file.
>
> Thanks.
>
> On Thursday, November 15, 2012 1:51:45 PM UTC+5:30, Frank Zhou wrote:
>>
>> when I use java apis to search data from hypertable , there are some
>> problem:
>> I set ColumnPredicate and set columns like this:
>>
>> // set column predicates
>> ColumnPredicate cp = new ColumnPredicate();
>> cp.setColumn_family("age");
>> cp.setOperation(**ColumnPredicateOperation.**PREFIX_MATCH);
>> cp.setValue("3");
>> scan_spec.addToColumn_**predicates(cp);
>>  //set columns
>> scan_spec.addToColumns("name")**;
>> scan_spec.addToColumns("age");
>>
>> but the result only contain one column 'age':
>>
>> rowkey: 01
>> family: age
>> qualifier:
>> value: 30
>>
>> The table is like this:
>> create table user (name, age, index age);
>>
>> data is like this:
>> 01      name    zhou
>> 01      name:nakename   san
>> 01      age     30
>>
>>
>> but when using C++ apis, it can return column "age" and "name".
>> Is there any bugs about the java thrift apis?
>> How to make java return all columns I need?
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Hypertable Development" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/hypertable-dev.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Hypertable Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/hypertable-dev.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to