Changes between Version 5 and Version 6 of UTGBCore/SQLite


Ignore:
Timestamp:
10/12/07 21:21:42 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTGBCore/SQLite

    v5 v6  
    99http://localhost:8888/org.utgenome.gwt.utgb.UTGBResourceCenter/dispatcher?actionClass=org.utgenome.gwt.utgb.server.app.SQLiteAccessSample
    1010
     11The source code of this servlet is here:
    1112source: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
     17Prepare a bean class with appropriate getter/setters;
     18{{{
     19public 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
     34Sample Table data:
     35
     36