This package provides the core functionality for the JDBC and Android packages. Users that are connecting to SQL databases via JDBC will need to download the ormlite-jdbc package as well. Android users should download the ormlite-android package as
JWS对象关系映射
介绍
当涉及到在Java中使用ORM库时,我以前使用过ORMLite。 它工作得很好,但是我不喜欢查询生成器。
另一件事是,我希望控制JDBC包装程序,以便以简单的方式实现自动重新连接功能(如果由于某种原因而断开连接)。
我终于决定制作一个适合我需求的ORM,就在这里。
文献资料
版本2完全稳定后,将立即发布版本2的文档。
用法示例
模型
Dates SoftDelete
class User extends Model {
Column
int id;
Co