DbResultsAsText

class DbResultsAsText(rowSet: CachedRowSet, var dFormat: String? = "%.3f") : Iterable<List<String>>

Constructors

Link copied to clipboard
constructor(rowSet: CachedRowSet, dFormat: String? = "%.3f")

Types

Link copied to clipboard
object Companion
Link copied to clipboard
inner class DbColumn(val index: Int, val name: String, val type: Int, val typeName: String)
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

the number of rows in the row set

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open fun forEach(p0: Consumer<in List<String>>)
Link copied to clipboard
fun formattedRow(rowNum: Int): String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open operator override fun iterator(): Iterator<List<String>>
Link copied to clipboard
Link copied to clipboard
fun rowAsStrings(rowNum: Int): List<String>

Converts the column values to string values. Any instance that cannot be converted is replaced with a string representing the SQL type in parentheses. For example, SQL type BLOB will be (BLOB).

Link copied to clipboard