
com.draagon.meta.manager.db.defs.ViewDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metaobjects-omdb Show documentation
Show all versions of metaobjects-omdb Show documentation
Relational Database ObjectManager libraries for MetaData-driven development.
The newest version!
package com.draagon.meta.manager.db.defs;
public class ViewDef extends BaseTableDef {
private String sql = null;
public ViewDef( NameDef name ) {
super( name );
//setSQL( sql );
}
public String getSQL() {
return sql;
}
public void setSQL(String sql) {
this.sql = sql;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy