Interface DatabaseAPI.StatementCommon
- All Superinterfaces:
- AutoCloseable
- All Known Subinterfaces:
- DatabaseAPI.Query,- DatabaseAPI.Update
- Enclosing interface:
- DatabaseAPI
Common shared API between 
DatabaseAPI.Query and DatabaseAPI.Update. This supports
 prepared statements within the general mechanisms of this API.- Author:
- Donal Fellows
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Close this statement.Get the list of parameters to the statement.
- 
Method Details- 
closevoid close()Close this statement. This never throws a checked exception. Some database connector may ignore this method.- Specified by:
- closein interface- AutoCloseable
 
- 
getParametersGet the list of parameters to the statement. This may be an expensive operation.- Returns:
- List of parameter names. Unnamed parameters may be
         mapped as null.
 
 
-