java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNumbered.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 27 Dec 2013 17:51:05 +0100
branchv_0
changeset 81 847c83288d01
parent 68 574cd7fbb5b2
child 143 1336bb9a4499
permissions -rw-r--r--
bash completion: perl + bash + ant for generating completion script
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk;
    19 
    20 import static info.globalcode.sql.dk.Functions.notNull;
    21 import java.sql.PreparedStatement;
    22 import java.sql.SQLException;
    23 import java.util.List;
    24 
    25 /**
    26  *
    27  * @author Ing. František Kučera (frantovo.cz)
    28  */
    29 public class SQLCommandNumbered extends SQLCommand {
    30 
    31 	private List<Parameter> parameters;
    32 
    33 	public SQLCommandNumbered(String query, List<Parameter> parameters) {
    34 		super(query);
    35 		this.parameters = parameters;
    36 	}
    37 
    38 	@Override
    39 	public void parametrize(PreparedStatement ps) throws SQLException {
    40 		int i = 1;
    41 		for (Parameter p : notNull(parameters)) {
    42 			ps.setObject(i++, p.getValue(), p.getType().getCode());
    43 		}
    44 	}
    45 
    46 	@Override
    47 	public List<Parameter> getParameters() {
    48 		return parameters;
    49 	}
    50 }