merge(Columns other) merge the data from two instances of Columns.
The 4.2 TDS protocol gives the column information in multiple pieces.
Each piece gives us a specific piece of information for all the
columns in the result set.
merge the data from two instances of Columns.
The 4.2 TDS protocol gives the column information in multiple pieces.
Each piece gives us a specific piece of information for all the
columns in the result set. We must join those pieces of information
together to use as the basis for the ResultSetMetaData class.
exception: TdsException - thrown if the two instances of Columns can'tbe merged. This can happen if the number of columns isn't identical or if there is conflicting data.
nullableWasSet
public boolean nullableWasSet(int columnNumber)(Code)
readOnlyWasSet
public boolean readOnlyWasSet(int columnNumber)(Code)
setAutoIncrement
public void setAutoIncrement(int columnNumber, boolean value)(Code)
setDisplaySize
public void setDisplaySize(int columnNumber, int value)(Code)
setLabel
public void setLabel(int columnNumber, String value)(Code)
setName
public void setName(int columnNumber, String value)(Code)
setNullable
public void setNullable(int columnNumber, int value)(Code)
setPrecision
public void setPrecision(int columnNumber, int value)(Code)
setReadOnly
public void setReadOnly(int columnNumber, boolean value)(Code)
setScale
public void setScale(int columnNumber, int value)(Code)
setType
public void setType(int columnNumber, int value)(Code)