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

org.hotrod.runtime.livesql.sysobjects.SysDummy1Table Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
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