java/jdbc-loopback-driver/src/main/java/info/globalcode/jdbc/loopback/PreparedStatement.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 237 7e08730da258
permissions -rw-r--r--
fix license version: GNU GPLv3
franta-hg@171
     1
/**
franta-hg@171
     2
 * SQL-DK
franta-hg@171
     3
 * Copyright © 2014 František Kučera (frantovo.cz)
franta-hg@171
     4
 *
franta-hg@171
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@171
     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@171
     8
 *
franta-hg@171
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@171
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@171
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@171
    12
 * GNU General Public License for more details.
franta-hg@171
    13
 *
franta-hg@171
    14
 * You should have received a copy of the GNU General Public License
franta-hg@171
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@171
    16
 */
franta-hg@171
    17
package info.globalcode.jdbc.loopback;
franta-hg@171
    18
franta-hg@171
    19
import java.sql.SQLException;
franta-hg@171
    20
import java.sql.SQLWarning;
franta-hg@171
    21
import java.sql.Types;
franta-hg@171
    22
import java.util.ArrayList;
franta-hg@171
    23
import java.util.HashMap;
franta-hg@171
    24
import java.util.List;
franta-hg@171
    25
import java.util.Map;
franta-hg@171
    26
franta-hg@171
    27
/**
franta-hg@171
    28
 *
franta-hg@171
    29
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@171
    30
 */
franta-hg@171
    31
public class PreparedStatement extends AbstractPreparedStatement {
franta-hg@171
    32
franta-hg@172
    33
	private final Map<Integer, ObjectParameter> parameters = new HashMap<>();
franta-hg@171
    34
	private List<Object[]> table;
franta-hg@172
    35
	private final ResultSetMetaData metadata = new ResultSetMetaData();
franta-hg@171
    36
franta-hg@171
    37
	@Override
franta-hg@176
    38
	public void setObject(int parameterNumber, Object data, int targetSqlType) throws SQLException {
franta-hg@176
    39
		parameters.put(parameterNumber, new ObjectParameter(data, targetSqlType));
franta-hg@171
    40
	}
franta-hg@171
    41
franta-hg@171
    42
	@Override
franta-hg@171
    43
	public boolean execute() throws SQLException {
franta-hg@171
    44
franta-hg@171
    45
		if (parameters.size() < 1) {
franta-hg@171
    46
			throw new SQLException("Missing first parameter (column count)");
franta-hg@171
    47
		} else {
franta-hg@172
    48
			int columnCount = Integer.valueOf(String.valueOf(parameters.get(1).getData()));
franta-hg@171
    49
franta-hg@171
    50
			for (int i = 0; i < columnCount; i++) {
franta-hg@171
    51
				String label = parameters.get(1 + i + 1).getData().toString();
franta-hg@171
    52
				metadata.addColumn(new ResultSetMetaData.ColumnDescriptor(Types.VARCHAR, "VARCHAR", label, label));
franta-hg@171
    53
			}
franta-hg@171
    54
franta-hg@171
    55
			int cellIndex = 0;
franta-hg@171
    56
franta-hg@171
    57
			table = new ArrayList<>();
franta-hg@171
    58
			Object[] currentRow = null;
franta-hg@171
    59
franta-hg@171
    60
			for (int parameterNumber = (1 + columnCount + 1); true; parameterNumber++) {
franta-hg@171
    61
				ObjectParameter data = parameters.get(parameterNumber);
franta-hg@171
    62
				if (data == null) {
franta-hg@171
    63
					break;
franta-hg@171
    64
				} else {
franta-hg@171
    65
					int columnIndex = cellIndex % columnCount;
franta-hg@171
    66
					cellIndex++;
franta-hg@171
    67
					if (columnIndex == 0) {
franta-hg@171
    68
						currentRow = new Object[columnCount];
franta-hg@171
    69
						table.add(currentRow);
franta-hg@171
    70
					}
franta-hg@171
    71
					currentRow[columnIndex] = data.getData();
franta-hg@171
    72
				}
franta-hg@171
    73
			}
franta-hg@171
    74
franta-hg@171
    75
			return true;
franta-hg@171
    76
		}
franta-hg@171
    77
	}
franta-hg@171
    78
franta-hg@171
    79
	@Override
franta-hg@171
    80
	public java.sql.ResultSet getResultSet() throws SQLException {
franta-hg@171
    81
		return new ResultSet(metadata, table);
franta-hg@171
    82
	}
franta-hg@171
    83
franta-hg@171
    84
	@Override
franta-hg@171
    85
	public int getUpdateCount() throws SQLException {
franta-hg@171
    86
		return -1;
franta-hg@171
    87
	}
franta-hg@171
    88
franta-hg@171
    89
	@Override
franta-hg@171
    90
	public boolean getMoreResults() throws SQLException {
franta-hg@171
    91
		return false;
franta-hg@171
    92
	}
franta-hg@171
    93
franta-hg@171
    94
	@Override
franta-hg@171
    95
	public void close() throws SQLException {
franta-hg@171
    96
	}
franta-hg@171
    97
franta-hg@171
    98
	@Override
franta-hg@171
    99
	public SQLWarning getWarnings() throws SQLException {
franta-hg@171
   100
		return null;
franta-hg@171
   101
	}
franta-hg@171
   102
franta-hg@171
   103
	@Override
franta-hg@171
   104
	public void clearWarnings() throws SQLException {
franta-hg@171
   105
	}
franta-hg@171
   106
}