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

📄 persistentidentifiergenerator.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$Id: PersistentIdentifierGenerator.java,v 1.7.2.1 2003/08/09 11:24:48 turin42 Exp $package net.sf.hibernate.id;import net.sf.hibernate.HibernateException;import net.sf.hibernate.dialect.Dialect;/** * An <tt>IdentifierGenerator</tt> that requires creation of database objects. * <br><br> * All <tt>PersistentIdentifierGenerator</tt>s that also implement * <tt>Configurable</tt> have access to a special mapping parameter: schema * * @see IdentifierGenerator * @see Configurable * @author Gavin King */public interface PersistentIdentifierGenerator extends IdentifierGenerator {		/**	 * The configuration parameter holding the schema name	 */	public static final String SCHEMA = "schema";		/**	 * The configuration parameter holding the table name for the 	 * generated id	 */	public static final String TABLE = "target_table";		/**	 * The configuration parameter holding the primary key column 	 * name of the generated id	 */	public static final String PK = "target_column";		/**	 * The SQL required to create the underlying database objects.	 * @param dialect	 * @return String[]	 * @throws HibernateException	 */	public String[] sqlCreateStrings(Dialect dialect) throws HibernateException;		/**	 * The SQL required to remove the underlying database objects.	 * @param dialect	 * @return String	 * @throws HibernateException	 */	public String sqlDropString(Dialect dialect) throws HibernateException;		/**	 * Return a key unique to the underlying database objects. Prevents us from	 * trying to create/remove them multiple times.	 * @return Object an identifying key for this generator	 */	public Object generatorKey();	}

⌨️ 快捷键说明

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