|
AR System Java API | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.bmc.arsys.api.SQLResult
public class SQLResult
The SQLResult class returns a list of
result values returned from an SQL query.
| Method Summary | |
|---|---|
Object |
clone()
Clone implementation that returns an Object with data cloned from self |
boolean |
equals(Object obj)
|
List<List<Value>> |
getContents()
Returns list of zero or more (accessible) rows that match the criteria defined by the sqlCommand value
Each item in the list represents one matching row, each
of which contains a list of the selected column values. |
String |
getReturnCommand()
|
int |
getTotalNumberOfMatches()
Returns the total number of (accessible) rows that match the SQL selection criteria. |
int |
hashCode()
|
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Method Detail |
|---|
public int getTotalNumberOfMatches()
maxRetrieve value
Specify NULL for
this parameter if you do not want to retrieve this count.
Note: Performing this count requires additional search time
if the number of matching rows
is more than the maxRetrieve value
In this case,
the cost of completing the search
diminishes the performance benefits of retrieving fewer rows.
public List<List<Value>> getContents()
sqlCommand value
Each item in the list represents one matching row, each
of which contains a list of the selected column values.
The system returns a list
with zero items if no rows match the specified criteria.
public String toString()
toString in class Objectpublic int hashCode()
hashCode in class Objectpublic boolean equals(Object obj)
equals in class Object
public Object clone()
throws CloneNotSupportedException
clone in class ObjectCloneNotSupportedExceptionpublic String getReturnCommand()
|
AR System Java API | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||