当前位置 : 主页 > 编程语言 > c++ >

Android基于原生API的面向对象式数据库架构设计

来源:互联网 收集:自由互联 发布时间:2021-06-30
IBaseDao数据库操作接口 public interface IBaseDao { /** * 插入数据 * @param entity * @return */ Long insert(T entity); int update(T entity,T where); /** * 删除数据 * @param where * @return */ int delete(T where); /** * 查询数
IBaseDao数据库操作接口
public interface IBaseDao
 
   {
    /**
     * 插入数据
     * @param entity
     * @return
     */
    Long insert(T entity);

    int update(T entity,T where);

    /**
     * 删除数据
     * @param where
     * @return
     */
    int delete(T where);

    /**
     * 查询数据
     * @param where
     * @return
     */
    List
  
    query(T where); List
   
     query(T where,String orderBy,Integer startIndex,Integer limit); List
    
      query(String sql); }
    
   
  
 
面向对象数据库架构设计.rar 面向对象数据库架构设计.rar
网友评论