public final class DatabaseTableSQLUtil extends Object
Modifier and Type | Method and Description |
---|---|
static Map<String,SQLParam> |
getColumnValues(MappingStrategy sms,
ResultSet resultSet)
Read one row from database result set and convert it to columnValues map.
|
static String |
quoteName(String quoting,
String value)
Used to escape the table or column name.
|
static void |
setParams(MappingStrategy sms,
CallableStatement statement,
List<SQLParam> params)
This method binds the "?"
|
static void |
setParams(MappingStrategy sms,
PreparedStatement statement,
List<SQLParam> params)
This method binds the "?"
|
public static void setParams(MappingStrategy sms, PreparedStatement statement, List<SQLParam> params) throws SQLException
This method binds the "?" markers in SQL statement with the parameters given as values. It
concentrates the replacement of all params. GuardedString
are handled so the password is never
visible.
sms
- statement
- params
- a List
of the object argumentsSQLException
- an exception in statementpublic static void setParams(MappingStrategy sms, CallableStatement statement, List<SQLParam> params) throws SQLException
This method binds the "?" markers in SQL statement with the parameters given as values. It
concentrates the replacement of all params. GuardedString
are handled so the password is never
visible.
sms
- statement
- params
- a List
of the object argumentsSQLException
- an exception in statementpublic static Map<String,SQLParam> getColumnValues(MappingStrategy sms, ResultSet resultSet) throws SQLException
sms
- a mapping strategyresultSet
- database dataSQLException
Copyright © 2018–2025. All rights reserved.