t

org.tresql

RowLike

trait RowLike extends Typed with AutoCloseable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RowLike
  2. AutoCloseable
  3. Typed
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(name: String): Any
  2. abstract def apply(idx: Int): Any
  3. abstract def column(idx: Int): Column
  4. abstract def columnCount: Int
  5. abstract def columns: Seq[Column]
  6. abstract def typed[T](name: String)(implicit arg0: Manifest[T]): T
    Definition Classes
    Typed
  7. abstract def values: Seq[Any]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def array(name: String): Array
  5. def array(idx: Int): Array
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def b(name: String): Array[Byte]
  8. def b(idx: Int): Array[Byte]
  9. def bd(name: String): BigDecimal
  10. def bd(idx: Int): BigDecimal
  11. def bigdecimal(name: String): BigDecimal
  12. def bigdecimal(idx: Int): BigDecimal
  13. def bigint(name: String): BigInt
  14. def bigint(idx: Int): BigInt
  15. def bl(name: String): Boolean
  16. def bl(idx: Int): Boolean
  17. def blob(name: String): Blob
  18. def blob(idx: Int): Blob
  19. def boolean(name: String): Boolean
  20. def boolean(idx: Int): Boolean
  21. def bs(name: String): InputStream
  22. def bs(idx: Int): InputStream
  23. def bytes(name: String): Array[Byte]
  24. def bytes(idx: Int): Array[Byte]
  25. def clob(name: String): Clob
  26. def clob(idx: Int): Clob
  27. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  28. def close(): Unit

    Close underlying database resources related to this result.

    Close underlying database resources related to this result. Default implementation does nothing.

    Definition Classes
    RowLike → AutoCloseable
  29. def d(name: String): Date
  30. def d(idx: Int): Date
  31. def date(name: String): Date
  32. def date(idx: Int): Date
  33. def dbl(name: String): Double
  34. def dbl(idx: Int): Double
  35. def double(name: String): Double
  36. def double(idx: Int): Double
  37. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  39. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  40. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  41. def i(name: String): Int
  42. def i(idx: Int): Int
  43. def int(name: String): Int
  44. def int(idx: Int): Int
  45. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  46. def jBigDecimal(name: String): BigDecimal
  47. def jBigDecimal(idx: Int): BigDecimal
  48. def jBigInteger(name: String): BigInteger
  49. def jBigInteger(idx: Int): BigInteger
  50. def jBoolean(name: String): Boolean
  51. def jBoolean(idx: Int): Boolean
  52. def jDouble(name: String): Double
  53. def jDouble(idx: Int): Double
  54. def jInt(name: String): Integer
  55. def jInt(idx: Int): Integer
  56. def jLong(name: String): Long
  57. def jLong(idx: Int): Long
  58. def jbd(name: String): BigDecimal
  59. def jbd(idx: Int): BigDecimal
  60. def jbl(name: String): Boolean
  61. def jbl(idx: Int): Boolean
  62. def jdbl(name: String): Double
  63. def jdbl(idx: Int): Double
  64. def ji(name: String): Integer
  65. def ji(idx: Int): Integer
  66. def jl(name: String): Long
  67. def jl(idx: Int): Long
  68. def l(name: String): Long
  69. def l(idx: Int): Long
  70. def listOfRows(name: String): List[RowLike.this.type]
  71. def listOfRows(idx: Int): List[RowLike.this.type]
  72. def long(name: String): Long
  73. def long(idx: Int): Long
  74. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  76. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  77. def r(name: String): Result[RowLike]
  78. def r(idx: Int): Result[RowLike]
  79. def reader(name: String): Reader
  80. def reader(idx: Int): Reader
  81. def result(name: String): Result[RowLike]
  82. def result(idx: Int): Result[RowLike]
  83. def rowToVector: Vector[Any]

    name

    name

    toVector

    is defined in

    trait TranversableOnce

    toVector }}}

  84. def s(name: String): String
  85. def s(idx: Int): String
  86. def stream(name: String): InputStream
  87. def stream(idx: Int): InputStream
  88. def string(name: String): String
  89. def string(idx: Int): String
  90. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  91. def t(name: String): Timestamp
  92. def t(idx: Int): Timestamp
  93. def time(name: String): Time
  94. def time(idx: Int): Time
  95. def timestamp(name: String): Timestamp
  96. def timestamp(idx: Int): Timestamp
  97. def toMap: Map[String, Any]

    Converts row to map preserving column sequence.

    Converts row to map preserving column sequence. null value column names make as _idx, where idx is number over null value columns

  98. def toString(): String
    Definition Classes
    AnyRef → Any
  99. def typed[T](implicit converter: CoreTypes.Converter[T], m: Manifest[T]): T
    Definition Classes
    Typed
  100. def typed[T](columnIndex: Int)(implicit m: Manifest[T]): T
    Definition Classes
    Typed
  101. def typed(columnIndex: Int, manifestName: String): Any
    Definition Classes
    Typed
  102. def typedPf(columnIndex: Int): PartialFunction[String, Any]
    Definition Classes
    Typed
  103. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  104. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  105. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AutoCloseable

Inherited from Typed

Inherited from AnyRef

Inherited from Any

Ungrouped