org.hotrod.runtime.livesql.sysobjects.SysDummy1Table Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-livesql Show documentation
Show all versions of hotrod-livesql Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
package org.hotrod.runtime.livesql.sysobjects;
import org.hotrod.runtime.livesql.metadata.StringColumn;
import org.hotrod.runtime.livesql.metadata.Table;
public class SysDummy1Table extends Table {
// Properties
public StringColumn ibmreqd;
// Constructors
public SysDummy1Table() {
super(null, "SYSIBM", "SYSDUMMY1", "Table", null);
initialize();
}
// Initialization
private void initialize() {
this.ibmreqd = new StringColumn(this, "IBMREQD", "ibmreqd", "VARCHAR", 1, 0);
super.columns.add(this.ibmreqd);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy