3 * Copyright (C) 2009-2017 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 package org.sonar.server.platform.db.migration.step;
22 import java.io.ByteArrayInputStream;
23 import java.sql.PreparedStatement;
24 import java.sql.SQLException;
25 import java.sql.Timestamp;
26 import java.sql.Types;
27 import java.util.Date;
28 import javax.annotation.Nullable;
29 import org.apache.commons.dbutils.DbUtils;
31 class BaseSqlStatement<CHILD extends SqlStatement> implements SqlStatement<CHILD> {
32 protected PreparedStatement pstmt;
34 protected BaseSqlStatement(PreparedStatement pstmt) {
40 DbUtils.closeQuietly(pstmt);
45 public CHILD setString(int columnIndex, @Nullable String value) throws SQLException {
46 pstmt.setString(columnIndex, value);
51 public CHILD setInt(int columnIndex, @Nullable Integer value) throws SQLException {
53 pstmt.setNull(columnIndex, Types.INTEGER);
55 pstmt.setInt(columnIndex, value);
61 public CHILD setLong(int columnIndex, @Nullable Long value) throws SQLException {
63 pstmt.setNull(columnIndex, Types.BIGINT);
65 pstmt.setLong(columnIndex, value);
71 public CHILD setBoolean(int columnIndex, @Nullable Boolean value) throws SQLException {
73 pstmt.setNull(columnIndex, Types.BOOLEAN);
75 pstmt.setBoolean(columnIndex, value);
81 public CHILD setBytes(int columnIndex, @Nullable byte[] value) throws SQLException {
83 pstmt.setNull(columnIndex, Types.BINARY);
85 pstmt.setBinaryStream(columnIndex, new ByteArrayInputStream(value));
91 public CHILD setDouble(int columnIndex, @Nullable Double value) throws SQLException {
93 pstmt.setNull(columnIndex, Types.DECIMAL);
95 pstmt.setDouble(columnIndex, value);
101 public CHILD setDate(int columnIndex, @Nullable Date value) throws SQLException {
103 pstmt.setNull(columnIndex, Types.TIMESTAMP);
105 pstmt.setTimestamp(columnIndex, new Timestamp(value.getTime()));