Java org.springframework.jdbc.object SqlQuery fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.object SqlQuery fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.object SqlQuery.

The text is from its open source code.

Method

voidcompile()
Compile this query.
Listexecute(Object... params)
Convenient method to execute without context.
Listexecute(Map context)
Convenient method to execute without parameters.
Listexecute(int p1)
Convenient method to execute with a single int parameter.
Listexecute(long p1)
Convenient method to execute with a single long parameter.
Listexecute(String p1)
Convenient method to execute with a single String parameter.
Listexecute()
Convenient method to execute without parameters nor context.
ListexecuteByNamedParam(Map paramMap)
Convenient method to execute without context.
voidsetDataSource(DataSource dataSource)
Set the JDBC DataSource to obtain connections from.
voidsetSql(@Nullable String sql)
Set the SQL executed by this operation.