Class SQLServerDataColumn


  • public final class SQLServerDataColumn
    extends java.lang.Object
    Represents a column of the in-memory data table represented by SQLServerDataTable.
    • Constructor Summary

      Constructors 
      Constructor Description
      SQLServerDataColumn​(java.lang.String columnName, int sqlType)
      Constructs a SQLServerDataColumn with the column name and type.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getColumnName()
      Returns the column name.
      int getColumnType()
      Returns the column type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SQLServerDataColumn

        public SQLServerDataColumn​(java.lang.String columnName,
                                   int sqlType)
        Constructs a SQLServerDataColumn with the column name and type.
        Parameters:
        columnName - the name of the column
        sqlType - the type of the column
    • Method Detail

      • getColumnName

        public java.lang.String getColumnName()
        Returns the column name.
        Returns:
        the name of the column.
      • getColumnType

        public int getColumnType()
        Returns the column type.
        Returns:
        the column type.