Class H2PlainRowFactory


  • public class H2PlainRowFactory
    extends org.h2.result.RowFactory
    Plain row factory.
    • Constructor Detail

      • H2PlainRowFactory

        public H2PlainRowFactory()
    • Method Detail

      • create

        public static org.h2.result.Row create​(org.h2.value.Value v)
        Parameters:
        v - Value.
        Returns:
        Row.
      • create

        public static org.h2.result.Row create​(int colCnt,
                                               org.h2.value.Value... data)
        Parameters:
        colCnt - Requested column count. H2 engine can add extra columns at the end of result set.
        data - Values.
        Returns:
        Row.
        See Also:
        ResultInterface.getVisibleColumnCount(), GridH2ValueMessageFactory.toMessages(Collection, int), ResultInterface.currentRow()
      • createRow

        public org.h2.result.Row createRow​(org.h2.value.Value[] data,
                                           int memory)
        Specified by:
        createRow in class org.h2.result.RowFactory