imported patch java-api

--HG--
rename : lang/python/Makefile.am => lang/java/Makefile.am
rename : lang/python/wiredtiger.i => lang/java/wiredtiger.i
This commit is contained in:
Michael Cahill
2012-07-07 01:27:47 +10:00
parent 1fb8798449
commit 5791f5b864
8 changed files with 401 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
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);
}
}