java/sql-dk/src/main/java/info/globalcode/sql/dk/SQLCommand.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 238 4a1864c3e867
permissions -rw-r--r--
fix license version: GNU GPLv3
franta-hg@16
     1
/**
franta-hg@16
     2
 * SQL-DK
franta-hg@16
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@16
     4
 *
franta-hg@16
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@16
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@250
     7
 * the Free Software Foundation, version 3 of the License.
franta-hg@16
     8
 *
franta-hg@16
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@16
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@16
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@16
    12
 * GNU General Public License for more details.
franta-hg@16
    13
 *
franta-hg@16
    14
 * You should have received a copy of the GNU General Public License
franta-hg@16
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@16
    16
 */
franta-hg@1
    17
package info.globalcode.sql.dk;
franta-hg@1
    18
franta-hg@1
    19
import java.sql.Connection;
franta-hg@1
    20
import java.sql.PreparedStatement;
franta-hg@34
    21
import java.sql.SQLException;
franta-hg@34
    22
import java.util.List;
franta-hg@1
    23
franta-hg@1
    24
/**
franta-hg@155
    25
 * Represents SQL string and its parameters (if there are any).
franta-hg@1
    26
 *
franta-hg@1
    27
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
    28
 */
franta-hg@1
    29
public abstract class SQLCommand {
franta-hg@1
    30
franta-hg@1
    31
	private String query;
franta-hg@1
    32
franta-hg@37
    33
	public SQLCommand(String query) {
franta-hg@34
    34
		this.query = query;
franta-hg@34
    35
	}
franta-hg@1
    36
franta-hg@35
    37
	public PreparedStatement prepareStatement(Connection c) throws SQLException {
franta-hg@35
    38
		return c.prepareStatement(query);
franta-hg@35
    39
	}
franta-hg@34
    40
franta-hg@34
    41
	public abstract void parametrize(PreparedStatement ps) throws SQLException;
franta-hg@34
    42
franta-hg@34
    43
	public abstract List<? extends Parameter> getParameters();
franta-hg@29
    44
franta-hg@29
    45
	public String getQuery() {
franta-hg@29
    46
		return query;
franta-hg@29
    47
	}
franta-hg@1
    48
}