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

📄 pagestatementfactory.java

📁 本项目是基于展示新闻的一款产品。在本系统中用户可以自定义栏目及新闻分类 发布新闻信息
💻 JAVA
字号:
/**
 * 
 */
package cn.handson.model.service.dao.page;

/**
 * @author Administrator
 *
 */
public class PageStatementFactory {
	
	/**
	 * @return
	 */
	public static PagedStatement newMysqlInstance(){
		return new PagedStatementMysqlImpl();
	}
	/**
	 * @return
	 */
	public static PagedStatement newSqlServerInstance(){
		return new PagedStatementSqlServerImpl();
	}
	/**
	 * @return
	 */
	public static PagedStatement newOracleInstance(){
		return new pagedStatementOracleImpl();
	}
}

⌨️ 快捷键说明

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