All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.stripecubeui.bo.UiResource.xml Maven / Gradle / Ivy

Go to download

Css / Javascript Merger and Minimizer integrated with Stripecube Web App Development

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<bean cache="ui_resource">
	<read name="id">
	    select
	    	id,
	    	content,
	    	type,
	    	version,
	    	path
	    from
	    	ui_resource
	    where
	    	id = ${this.id}
	</read>
	<create>
		insert into ui_resource (
		name,
		version,
		path,
		content,
		content_size,
		type,
		creation_time,
		last_modified
		) values (
		${this.name},
		${this.version},
		${this.path},
		${this.content},
		${this.contentSize},
		${this.type},
		${this.creationTime},
		${this.lastModified}
		)
	</create>
	<curr-val>select LAST_INSERT_ID() as id</curr-val>
</bean>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy