| Modifier and Type | Method and Description | 
|---|---|
Statement | 
Statement.add()
Save the current binding and create a new one. 
 | 
Statement | 
Statement.bind(int index,
    Object value)
Bind a non- 
null value to an indexed parameter. | 
Statement | 
Statement.bind(String name,
    Object value)
Bind a non- 
null to a named parameter. | 
Statement | 
Statement.bindNull(int index,
        Class<?> type)
Bind a  
null value to an indexed parameter. | 
Statement | 
Statement.bindNull(String name,
        Class<?> type)
Bind a  
null value to a named parameter. | 
Statement | 
Connection.createStatement(String sql)
Creates a new statement for building a statement-based request. 
 | 
default Statement | 
Statement.fetchSize(int rows)
Configures  
Statement to retrieve a fixed number of rows when fetching results from a query instead deriving fetch size from back pressure. | 
default Statement | 
Statement.returnGeneratedValues(String... columns)
 | 
Copyright © 2021. All rights reserved.