| Modifier and Type | Method and Description | 
|---|---|
Statement | 
Statement.add()
Save the current binding and create a new one. 
 | 
default Statement | 
Statement.bind(int index,
    boolean value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    byte value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    char value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    double value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    float value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    int value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    long value)
Bind a value to an indexed parameter. 
 | 
Statement | 
Statement.bind(int index,
    Object value)
Bind a value to an indexed parameter. 
 | 
default Statement | 
Statement.bind(int index,
    short value)
Bind a value to an indexed parameter. 
 | 
Statement | 
Statement.bind(String name,
    Object value)
Bind a value to a named parameter. 
 | 
Statement | 
Statement.bindNull(int index,
        Class<?> type)
Bind a  
null value to an indexed parametered 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 © 2019. All rights reserved.