- 授权协议: 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);
Pragmatic Thinking and Learning
Andy Hunt / The Pragmatic Bookshelf / 2008 / USD 34.95
In this title: together we'll journey together through bits of cognitive and neuroscience, learning and behavioral theory; you'll discover some surprising aspects of how our brains work; and, see how ......一起来看看 《Pragmatic Thinking and Learning》 这本书的介绍吧!
