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

📄 violatedconstraintnameextracter.java

📁 一个Java持久层类库
💻 JAVA
字号:
// $Id: ViolatedConstraintNameExtracter.java 4746 2004-11-11 20:57:28Z steveebersole $package org.hibernate.exception;import java.sql.SQLException;/** * Defines a contract for implementations that can extract the name of a violated * constraint from a SQLException that is the result of that constraint violation. * * @author Steve Ebersole */public interface ViolatedConstraintNameExtracter {	/**	 * Extract the name of the violated constraint from the given SQLException.	 *	 * @param sqle The exception that was the result of the constraint violation.	 * @return The extracted constraint name.	 */	public String extractConstraintName(SQLException sqle);}

⌨️ 快捷键说明

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