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

com.jfinal.template.activerecord.sql.SqlSource Maven / Gradle / Ivy

Go to download

the jfinal enjoy plugin for normal java program to use sql management function.

There is a newer version: 3.3.4
Show newest version
package com.jfinal.template.activerecord.sql;

import com.jfinal.template.source.ISource;

/**
 * 封装 sql 模板源
 */
class SqlSource {
	
	String file;
	ISource source;
	
	SqlSource(String file) {
		this.file = file;
		this.source = null;
	}
	
	SqlSource(ISource source) {
		this.file = null;
		this.source = source;
	}
	
	boolean isFile() {
		return file != null;
	}
}







© 2015 - 2024 Weber Informatics LLC | Privacy Policy