Methods Summary |
---|
public org.netbeans.modules.dbschema.ColumnElement | getColumnElement()Return the actual ColumnElement associated with this column.
return columnElement;
|
public int | getColumnLength()This method return the length of the column and -1 if unknown.
Integer len = columnElement.getLength();
return (len != null) ? len.intValue(): -1;
|
public java.lang.String | getColumnName()This method return the name of the column.
return name;
|
public int | getColumnType()This method return int corresponding to java.sql.Types.
return columnElement.getType();
|
public int | getIndex()Return the position of this column in the SQL statement.
return index;
|
public java.lang.String | getName()Return the name of this column.
return name;
|
public QueryTable | getQueryTable()Return the QueryTable associated with this column.
return table;
|
public java.lang.Object | getValue()Return the input value for this column.
return value;
|
public void | setIndex(int value)Set the position of this column in the SQL statement.
this.index = value;
|