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

com.togocms.pns.bo.Push.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<bean cache="push">
	<read name="id">
		select
		id,
		token
		from
		pns_queue
		where
		id = ${this.id} limit 1
	</read>
	<create>
		insert into pns_queue (
		user_id,
		message_id,
		token,
		platform,
		creation_time,
		last_modified
		) values (
		${this.userId},
		${this.messageId},
		${this.token},
		${this.platform},
		${this.creationTime},
		${this.lastModified}
		)
	</create>
	<delete>delete from pns_queue where id = ${this.id}</delete>
	<curr-val>select LAST_INSERT_ID() as id</curr-val>
</bean>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy