--HG-- rename : lang/python/Makefile.am => lang/java/Makefile.am rename : lang/python/wiredtiger.i => lang/java/wiredtiger.i
18 lines
473 B
Java
18 lines
473 B
Java
import com.wiredtiger.db.*;
|
|
|
|
public class ex_access {
|
|
public static void main(String[] args) {
|
|
Connection conn = wiredtiger.open("WT_HOME", "create");
|
|
Session s = conn.open_session(null);
|
|
s.create("table:t", "key_format=S,value_format=u");
|
|
Cursor c = s.open_cursor("table:t", null, null);
|
|
c.set_key("foo");
|
|
c.set_value("bar".getBytes());
|
|
c.insert();
|
|
c.reset();
|
|
while (c.next() == 0)
|
|
System.out.println("Got: " + c.get_key());
|
|
conn.close(null);
|
|
}
|
|
}
|