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

freemarker.template.common.xml.insert.ftl Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
    
	
        INSERT INTO ${tableInfo.tableName}(
            
        <#list tableInfo.columnLists as colm>
            <#if colm??>
                ${colm.columnName},
            
        
            
        ) VALUES (
            
        <#list tableInfo.columnLists as colm>
            <#if colm??>
                ${'#{'}${colm.javaColumnName},jdbcType=${colm.dataType}},
            
        
            
        )
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy