Java 数据库工具类库 sql2o

码农软件 · 软件分类 · ORM/持久层框架 · 2019-09-24 17:57:49

软件介绍

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);

本文地址:https://codercto.com/soft/d/15316.html

XForms Essentials

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》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具