]> source.dussan.org Git - sonarqube.git/blob
6444617dc6e5549914895782dd4379cb28c16a4a
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
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.
10  *
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.
15  *
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.
19  */
20 package org.sonar.server.platform.db.migration.step;
21
22 import java.sql.PreparedStatement;
23 import java.sql.SQLException;
24 import java.sql.Timestamp;
25 import java.sql.Types;
26 import java.util.Date;
27 import javax.annotation.Nullable;
28 import org.apache.commons.dbutils.DbUtils;
29
30 class BaseSqlStatement<CHILD extends SqlStatement> implements SqlStatement<CHILD> {
31   protected PreparedStatement pstmt;
32
33   protected BaseSqlStatement(PreparedStatement pstmt) {
34     this.pstmt = pstmt;
35   }
36
37   @Override
38   public void close() {
39     DbUtils.closeQuietly(pstmt);
40     pstmt = null;
41   }
42
43   @Override
44   public CHILD setString(int columnIndex, @Nullable String value) throws SQLException {
45     pstmt.setString(columnIndex, value);
46     return (CHILD) this;
47   }
48
49   @Override
50   public CHILD setInt(int columnIndex, @Nullable Integer value) throws SQLException {
51     if (value == null) {
52       pstmt.setNull(columnIndex, Types.INTEGER);
53     } else {
54       pstmt.setInt(columnIndex, value);
55     }
56     return (CHILD) this;
57   }
58
59   @Override
60   public CHILD setLong(int columnIndex, @Nullable Long value) throws SQLException {
61     if (value == null) {
62       pstmt.setNull(columnIndex, Types.BIGINT);
63     } else {
64       pstmt.setLong(columnIndex, value);
65     }
66     return (CHILD) this;
67   }
68
69   @Override
70   public CHILD setBoolean(int columnIndex, @Nullable Boolean value) throws SQLException {
71     if (value == null) {
72       pstmt.setNull(columnIndex, Types.BOOLEAN);
73     } else {
74       pstmt.setBoolean(columnIndex, value);
75     }
76     return (CHILD) this;
77   }
78
79   @Override
80   public CHILD setDouble(int columnIndex, @Nullable Double value) throws SQLException {
81     if (value == null) {
82       pstmt.setNull(columnIndex, Types.DECIMAL);
83     } else {
84       pstmt.setDouble(columnIndex, value);
85     }
86     return (CHILD) this;
87   }
88
89   @Override
90   public CHILD setDate(int columnIndex, @Nullable Date value) throws SQLException {
91     if (value == null) {
92       pstmt.setNull(columnIndex, Types.TIMESTAMP);
93     } else {
94       pstmt.setTimestamp(columnIndex, new Timestamp(value.getTime()));
95     }
96     return (CHILD) this;
97   }
98 }