Changes between Version 5 and Version 6 of UTGBCore/SQLite
- Timestamp:
- 10/12/07 21:21:42 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UTGBCore/SQLite
v5 v6 9 9 http://localhost:8888/org.utgenome.gwt.utgb.UTGBResourceCenter/dispatcher?actionClass=org.utgenome.gwt.utgb.server.app.SQLiteAccessSample 10 10 11 The source code of this servlet is here: 11 12 source:trunk/utgb/utgb-core/src/main/java/org/utgenome/gwt/utgb/server/app/SQLiteAccessSample.java 13 14 15 == Simple SQL query processing with BeanUtil == 16 17 Prepare a bean class with appropriate getter/setters; 18 {{{ 19 public class A 20 { 21 int id; 22 String name; 23 24 public A() {} 25 26 public int getId() { return id; } 27 public String getName() { return name; } 28 29 public void setId(int id) { return id; } 30 public void setName(String name) { return name; } 31 } 32 }}} 33 34 Sample Table data: 35 36