Package com.aquafold.openapi.rdbms
Interface AQStatementResult
-
public interface AQStatementResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ExceptiongetExceptions()Get an object describing an Exception, if one exists.longgetExecTime()Get the length of time it takes to execute the SQL statement.AQDataSet[]getResultData()Returns an array ofAQDataSetobjects containing query results.java.lang.StringgetStatement()Get the SQL statement executed.java.lang.StringgetTimeExecuted()Get the time when the statement is done executing.java.sql.SQLWarninggetWarnings()Get the SQLWarning object.
-
-
-
Method Detail
-
getWarnings
java.sql.SQLWarning getWarnings()
Get the SQLWarning object.- Returns:
- The SQLWarning object;
nullif there are no warnings generated.
-
getExceptions
java.lang.Exception getExceptions()
Get an object describing an Exception, if one exists.- Returns:
- The Exception object;
nullif there are no exceptions generated.
-
getStatement
java.lang.String getStatement()
Get the SQL statement executed.- Returns:
- The SQL statement.
-
getTimeExecuted
java.lang.String getTimeExecuted()
Get the time when the statement is done executing.- Returns:
- The time execution is completed as a string.
-
getExecTime
long getExecTime()
Get the length of time it takes to execute the SQL statement.- Returns:
- The value is in milliseconds.
-
-