setArray

abstract fun setArray(index: Int, type: ArrayColumnType<*, *>, array: Array<*>)

Sets the statement parameter at the index position to the provided array, with a type determined by its associated array column type.


abstract fun setArray(index: Int, type: String, array: Array<*>)

Deprecated (with error)

This function will be removed in future releases. Replace with the method `setArray(index, this, array)` that accepts an ArrayColumnType as the second argument instead of a string type representation.