91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 689KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-06-04
  • 語言: 其他
  • 標簽: JDBC封裝??

資源簡介

本資源屬于基本的JDBC操縱數據庫增刪改查代碼的輕量型封裝的實現,具體的使用過程大家可以參照以下博文的講解: http://blog.csdn.net/songdeitao/article/details/17484635

資源截圖

代碼片段和文件信息

package?com.steven.dao.iface;

import?java.util.List;

/**
?*?通過泛型機制為所有的實現類提供一下方法
?*?
?*?@author?Steven
?*?
?*/
public?interface?IbaseDao?{
/**
?*?新增一條數據
?*?
?*?@param?t
?*?@return
?*/
public?boolean?doCreate(T?t);

/**
?*?根據編號(主鍵)進行刪除一條數據
?*?
?*?@param?id
?*?@return
?*/
public?boolean?delete(int?id);

/**
?*?修改數據
?*?
?*?@param?t
?*?@return
?*/
public?boolean?update(T?t);

/**
?*?根據ID查找到該信息
?*?
?*?@param?id
?*?@return
?*/
public?T?findById(int?id);

/**
?*?返回所有的信息
?*?@return
?*/
public?List?findAll();
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2013-12-22?13:40??JDBC\
?????文件?????????374??2013-12-22?13:40??JDBC\.classpath
?????文件?????????380??2013-12-19?16:24??JDBC\.project
?????目錄???????????0??2013-12-20?17:47??JDBC\.settings\
?????文件?????????629??2013-12-19?16:24??JDBC\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2013-12-22?13:55??JDBC\bin\
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\dao\
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\dao\iface\
?????文件?????????423??2013-12-22?13:40??JDBC\bin\com\steven\dao\iface\IbaseDao.class
?????文件?????????253??2013-12-22?13:40??JDBC\bin\com\steven\dao\iface\IUserDao.class
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\dao\impl\
?????文件????????2738??2013-12-22?14:30??JDBC\bin\com\steven\dao\impl\UserDao.class
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\dbc\
?????文件????????2675??2013-12-22?13:40??JDBC\bin\com\steven\dbc\DatabaseConnection.class
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\entity\
?????文件????????2310??2013-12-22?13:40??JDBC\bin\com\steven\entity\User.class
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\test\
?????文件????????2059??2013-12-22?14:38??JDBC\bin\com\steven\test\CRUDTest.class
?????目錄???????????0??2013-12-22?13:40??JDBC\bin\com\steven\util\
?????文件????????6745??2013-12-22?14:39??JDBC\bin\com\steven\util\DaoHandle.class
?????文件????????3377??2013-12-22?13:40??JDBC\bin\com\steven\util\PropertiesLoad.class
?????文件?????????106??2013-12-19?17:04??JDBC\bin\jdbc.properties
?????文件?????????354??2013-12-22?13:55??JDBC\bin\mysql.sql
?????文件??????709922??2013-12-10?19:37??JDBC\mysql-connector-java-5.1.7-bin.jar
?????目錄???????????0??2013-12-20?17:47??JDBC\src\
?????目錄???????????0??2013-12-20?17:47??JDBC\src\com\
?????目錄???????????0??2013-12-20?17:47??JDBC\src\com\steven\
?????目錄???????????0??2013-12-20?17:47??JDBC\src\com\steven\dao\
?????目錄???????????0??2013-12-20?17:47??JDBC\src\com\steven\dao\iface\
............此處省略15個文件信息

評論

共有 條評論

相關資源