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

oracle.View Maven / Gradle / Ivy

There is a newer version: shw-air-terminal-vertical-1.0.57
Show newest version
/**
 * ADempiere contribution
 * Author: Karsten Thiemann, [email protected]
 * Compiere/Adempiere migration script generation.
*/

package oracle;

public class View {
	
	private String name;
	
	private String text;

	public View(String name, String text) {
		super();
		this.name = name;
		this.text = text;
	}

	public String getName() {
		return name;
	}

	public String getText() {
		return text;
	}
	
	public String getCreateStatement(){
		return "\nCREATE OR REPLACE FORCE VIEW " + name + "\nAS " +
		text + ";";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy