com.home.ln_spring.ch8.dao.jdbc.annotation.UpdateContact.java Source code

Java tutorial

Introduction

Here is the source code for com.home.ln_spring.ch8.dao.jdbc.annotation.UpdateContact.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.home.ln_spring.ch8.dao.jdbc.annotation;

import java.sql.Types;
import javax.sql.DataSource;
import org.springframework.jdbc.core.SqlParameter;
import org.springframework.jdbc.object.SqlUpdate;

/**
 *
 * @author vitaliy
 */
public class UpdateContact extends SqlUpdate {

    private static final String SQL_UPDATE_CONTACT = "update contact set first_name = :first_name, "
            + "last_name = :last_name, birth_date = :birth_date " + "where contact_id = :contact_id";

    public UpdateContact(DataSource dataSource) {
        super(dataSource, SQL_UPDATE_CONTACT);
        super.declareParameter(new SqlParameter("first_name", Types.VARCHAR));
        super.declareParameter(new SqlParameter("last_name", Types.VARCHAR));
        super.declareParameter(new SqlParameter("birth_date", Types.DATE));
        super.declareParameter(new SqlParameter("contact_id", Types.INTEGER));
    }
}