Class SqlStatement
- java.lang.Object
-
- io.vertigo.database.sql.statement.SqlStatement
-
public final class SqlStatement extends Object
SqlStatement. Holds all the information for executing a sql query : - the raw sql query - the bound parameters- Author:
- mlaroche,pchretien
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlStatementBuilder
builder(String sqlQuery)
List<SqlParameter>
getSqlParameters()
List<List<SqlParameter>>
getSqlParametersForBatch()
String
getSqlQuery()
-
-
-
Method Detail
-
builder
public static SqlStatementBuilder builder(String sqlQuery)
-
getSqlQuery
public String getSqlQuery()
-
getSqlParametersForBatch
public List<List<SqlParameter>> getSqlParametersForBatch()
-
getSqlParameters
public List<SqlParameter> getSqlParameters()
-
-