ParadiseSDK主要用来简化JAVA的开发,提高开发速度。降低Hibernate的入门门槛,是连接框架与O/R映射框架的开发框架
一个入库操作仅仅需要以下几行代码
DAO dao = DAOFactory.getInstance();
dao.put(obj,DAO.SAVE);
dao.execute();
不必关心,数据库的连接、打开、事务、关闭,ParadiseSDK帮助你封装了这些细节。
Translation:
ParadiseSDK mainly uses for to simplify JAVA the development, enhancesthe development speed. Reduces Hibernate the basic threshold, is connects the frame and O/R mapping frame development frame goes into storage the operation toneed following several lines of codes
DAO dao = DAOFactory.getInstance();
dao.put(obj,DAO.SAVE);
dao.execute();
Does not need to care about that, the database connection, opened,business, the closure, ParadiseSDK helps you to seal these details.
------------------------------------------------------
感觉还是用英文表达更好:)