Skip to content

Commit

Permalink
Add a method to obtain the result set, getResultSet is used to obtain…
Browse files Browse the repository at this point in the history
… the result set
  • Loading branch information
“v_kkhuang” committed Nov 14, 2024
1 parent 4ec58f0 commit 988d9e2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ class UJESSQLResultSet(
resultSetResult.getFileContent.asInstanceOf[util.ArrayList[util.ArrayList[String]]]
}

def getResultSet(): util.ArrayList[util.ArrayList[String]] = {
resultSetResultInit()
resultSetInit()
resultSetRow
}

private def init(): Unit = {
resultSetResultInit()
metaDataInit()
Expand Down

0 comments on commit 988d9e2

Please sign in to comment.