Example usage for org.springframework.jdbc.object SqlUpdate subclass-usage

List of usage examples for org.springframework.jdbc.object SqlUpdate subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.object SqlUpdate subclass-usage.

Usage

From source file org.osmsurround.ae.dao.NodeInsert.java

@Repository
public class NodeInsert extends SqlUpdate {

    @Autowired
    public NodeInsert(DataSource dataSource) {
        setDataSource(dataSource);

From source file org.osmsurround.ae.dao.NodeUpdate.java

@Repository
public class NodeUpdate extends SqlUpdate {

    @Autowired
    public NodeUpdate(DataSource dataSource) {
        setDataSource(dataSource);