资源简介

基于java体系,使用的技术jsp,struts,jdbc 包含源代码的工程文件。。。欢迎下载!!!! 个人通讯录管理系统。

资源截图

代码片段和文件信息



package com.relationinfo.txl.dao;

import com.relationinfo.txl.dto.*;
import com.relationinfo.txl.exceptions.*;
import java.sql.CallableStatement;

public interface FriendDao
{
/** 
 * 增加新记录到 friend table.
 */
public FriendPk insert(Friend dto) throws FriendDaoException;

/** 
 * 更新单笔记录 friend table.
 */
public void update(FriendPk pk Friend dto) throws FriendDaoException;

/** 
 * Deletes a single row in the friend table.
 */
public void delete(FriendPk pk) throws FriendDaoException;

/** 
 * 返回符合指定主键值的记录.
 */
public Friend findByPrimaryKey(FriendPk pk) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘xmjp = :xmjp‘.
 */
public Friend findByPrimaryKey(String xmjp) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘‘.
 */
public Friend[] findAll() throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘groupid = :groupid‘.
 */
public Friend[] findByGroup1(String groupid) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘xmjp = :xmjp‘.
 */
public Friend[] findWhereXmjpEquals(String xmjp) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘groupid = :groupid‘.
 */
public Friend[] findWhereGroupidEquals(String groupid) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘name = :name‘.
 */
public Friend[] findWhereNameEquals(String name) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘age = :age‘.
 */
public Friend[] findWhereAgeEquals(String age) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘sex = :sex‘.
 */
public Friend[] findWhereSexEquals(String sex) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘Professional = :professional‘.
 */
public Friend[] findWhereProfessionalEquals(String professional) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘Scholarship = :scholarship‘.
 */
public Friend[] findWhereScholarshipEquals(String scholarship) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘address = :address‘.
 */
public Friend[] findWhereAddressEquals(String address) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘email = :email‘.
 */
public Friend[] findWhereEmailEquals(String email) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘phone = :phone‘.
 */
public Friend[] findWherePhoneEquals(String phone) throws FriendDaoException;

/** 
 * 返回所有的记录,满足条件 ‘note = :note‘.
 */
public Friend[] findWhereNoteEquals(String note) throws FriendDaoException;

/** 
 * 设置 maxRows
 */
public void setMaxRows(int maxRows);

/** 
 * 获得 maxRows
 */
public int getMaxRows();

/** 
 * Returns all rows from the friend table that match the specified arbitrary SQL statement
 */
public Friend[] findByDynamicSelect(String sql object[] sqlParams) throws FriendDaoException;

/** 
 * Returns all rows from the friend table that match the specified arbitrary SQL statement
 */
public Friend[] findByDynamicWhere(String sql object[] sqlParams) throws FriendDaoException;

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        546  2006-08-07 22:10  listSystem\.classpath

     文件        856  2006-08-07 22:02  listSystem\.project

     文件        388  2006-08-07 22:02  listSystem\.settings\.component

     文件        330  2006-08-07 22:02  listSystem\.settings\org.eclipse.jdt.core.prefs

     文件        364  2006-08-07 22:02  listSystem\.settings\org.eclipse.jst.common.project.facet.core.prefs

     文件        269  2006-08-07 22:02  listSystem\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件       2639  2005-09-19 21:13  listSystem\RelationinfoTXL.sql

     文件      32784  2005-11-19 03:27  listSystem\RelationTXL.cdb

     文件      33916  2005-09-19 05:01  listSystem\RelationTXL.cdm

     文件      59249  2005-11-19 03:27  listSystem\RelationTXL.pdb

     文件      59308  2005-09-19 05:01  listSystem\RelationTXL.pdm

     文件      21241  2005-09-19 05:04  listSystem\RelationTxl.xml

     文件       3198  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dao\FriendDao.java

     文件       1844  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dao\Group1Dao.java

     文件       7186  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dto\Friend.java

     文件       1450  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dto\FriendPk.java

     文件       2409  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dto\Group1.java

     文件       1644  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\dto\Group1Pk.java

     文件        597  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\exceptions\DaoException.java

     文件        436  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\exceptions\FriendDaoException.java

     文件        438  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\exceptions\Group1DaoException.java

     文件        563  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\factory\FriendDaoFactory.java

     文件        567  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\factory\Group1DaoFactory.java

     文件       2489  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\jdbc\AbstractDataAccessobject.java

     文件      16120  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\jdbc\FriendDaoImpl.java

     文件      12019  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\jdbc\Group1DaoImpl.java

     文件       1610  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\jdbc\ResourceManager.java

     文件        965  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\struts\actions\FriendDeleteAction.java

     文件       1494  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\struts\actions\FriendFindAllAction.java

     文件       1581  2006-08-07 22:08  listSystem\src\com\relationinfo\txl\struts\actions\FriendFindByGroup1Action.java

............此处省略203个文件信息

评论

共有 条评论