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

com.github.gkutiel.Temp.xtend Maven / Gradle / Ivy

package com.github.gkutiel

import java.util.List
import java.lang.reflect.Field

class Temp{
	def static String ps(int valueCounts)'''
		INSERT INTO T VALUES («FOR i : 0..valueCounts SEPARATOR ','»?«ENDFOR»)
	'''
	
	def static String table(List fs)'''
		CREATE TABLE T (
			ID long IDENTITY PRIMARY KEY
			«FOR f : fs»
				,«f.name» «Java2Sql::toSql(f.type)»
			«ENDFOR»
		)
	'''
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy