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

📄 hsqlplatformwithnativesequence.java

📁 spring,z几 塞积极 决撒 积极上经济歼击机就 将计就计经济年毫毫毫毫毫毫毫毫毫毫毫毫毫毫
💻 JAVA
字号:
/* * Created on Nov 25, 2004 * */package org.springframework.samples.petclinic.toplink;import oracle.toplink.internal.databaseaccess.HSQLPlatform;import oracle.toplink.queryframework.ValueReadQuery;/** * Subclass of TopLink's default HSQLPlatform class, * using native HSQLDB identity columns for id generation. * <b>Only works on TopLink 10.1.3 and higher.</b> * * <p>Necessary for PetClinic's default data model, which relies on * identity columns: this is uniformly used across all persistence * layer implementations (JDBC, Hibernate, OJB, and TopLink). * * @author Juergen Hoeller * @author <a href="mailto:james.x.clark@oracle.com">James Clark</a> * @since 1.2 */public class HSQLPlatformWithNativeSequence extends HSQLPlatform {	public HSQLPlatformWithNativeSequence() {		setUsesNativeSequencing(true);	}	public boolean supportsNativeSequenceNumbers() {		return true;	}	public boolean shouldNativeSequenceAcquireValueAfterInsert() {		return true;	}	public ValueReadQuery buildSelectQueryForNativeSequence() {		return new ValueReadQuery("CALL IDENTITY()");	}}

⌨️ 快捷键说明

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