Package | Description |
---|---|
com.codelanx.codelanxlib.data |
Modifier and Type | Method and Description |
---|---|
default <R> SQLResponse<R> |
SQLDataType.operate(SQLFunction<? super PreparedStatement,R> oper,
String sql,
Object... params)
Runs a
PreparedStatement using the provided sql parameter. |
default SQLResponse |
SQLDataType.query(SQLConsumer<? super ResultSet> oper,
String sql,
Object... params)
Executes a query, and applies the resulting
ResultSet to the
passed SQLConsumer |
default <R> SQLResponse<R> |
SQLDataType.query(SQLFunction<? super ResultSet,R> oper,
String sql,
Object... params)
Executes a query, and applies the resulting
ResultSet to the
passed SQLFunction . |
default SQLResponse |
SQLDataType.update(String query,
Object... params)
Executes a query that can change values
|
Copyright © 2015. All rights reserved.