- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://www.sql2o.org/
- 软件文档: http://www.sql2o.org/learn
软件介绍
sql2o 是一个 Java 类库,可让你执行 SQL 查询并解析结果到 POJO 中,只需少数几行代码。
示例代码:
String sql = "SELECT id, category, duedate FROM tasks WHERE category = category";
Sql2o sql2o = new Sql2o(DB_URL, USER, PASS);
List<Task> tasks = sql2o.createQuery(sql).addParameter("category", "foo").executeAndFetch(Task.class);
XForms Essentials
Micah Dubinko / O'Reilly Media, Inc. / 2003-08-27 / USD 29.95
The use of forms on the Web is so commonplace that most user interactions involve some type of form. XForms - a combination of XML and forms - offers a powerful alternative to HTML-based forms. By pro......一起来看看 《XForms Essentials》 这本书的介绍吧!
