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

Pragmatic Thinking and Learning

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

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

MD5 加密
MD5 加密

MD5 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换