⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systeminfoiado.java

📁 Java项目开发与毕业设计指导 朱福喜, 黄昊编著 清华大学出版社 项目2
💻 JAVA
字号:
package iado;

import java.sql.SQLException;

/**
 * @author lixiaoqing
 *
 */
public interface SystemInfoIAdo {
	/**
	 * @return
	 */
	public String selectBulletin() throws SQLException;
	
	/**
	 * @return
	 */
	public int selectRowsPerPage() throws SQLException;
	
	/**
	 * @param bulletin
	 */
	public void updateBulletin(String bulletin) throws SQLException;
	
	/**
	 * @param rowsPerPage
	 */
	public void updateRowsPerPage(int rowsPerPage) throws SQLException;
	
	/**
	 * @throws SQLException
	 */
	public void close() throws SQLException;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -