java/jdbc-loopback-driver/src/main/java/info/globalcode/jdbc/loopback/ResultSetMetaData.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.util.ArrayList;
franta-hg@171
    21
import java.util.List;
franta-hg@171
    22
franta-hg@171
    23
/**
franta-hg@171
    24
 *
franta-hg@171
    25
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@171
    26
 */
franta-hg@171
    27
public class ResultSetMetaData extends AbstractResultSetMetaData {
franta-hg@171
    28
franta-hg@171
    29
	private List<ColumnDescriptor> columns = new ArrayList<>();
franta-hg@171
    30
franta-hg@171
    31
	public void addColumn(ColumnDescriptor cd) {
franta-hg@171
    32
		columns.add(cd);
franta-hg@171
    33
	}
franta-hg@171
    34
franta-hg@171
    35
	@Override
franta-hg@171
    36
	public int getColumnCount() throws SQLException {
franta-hg@171
    37
		return columns.size();
franta-hg@171
    38
	}
franta-hg@171
    39
franta-hg@171
    40
	@Override
franta-hg@171
    41
	public String getColumnLabel(int column) throws SQLException {
franta-hg@171
    42
		return columns.get(column - 1).label;
franta-hg@171
    43
	}
franta-hg@171
    44
franta-hg@171
    45
	@Override
franta-hg@171
    46
	public String getColumnName(int column) throws SQLException {
franta-hg@171
    47
		return columns.get(column - 1).name;
franta-hg@171
    48
	}
franta-hg@171
    49
franta-hg@171
    50
	@Override
franta-hg@171
    51
	public int getColumnType(int column) throws SQLException {
franta-hg@171
    52
		return columns.get(column - 1).type;
franta-hg@171
    53
	}
franta-hg@171
    54
franta-hg@171
    55
	@Override
franta-hg@171
    56
	public String getColumnTypeName(int column) throws SQLException {
franta-hg@171
    57
		return columns.get(column - 1).typeName;
franta-hg@171
    58
	}
franta-hg@171
    59
franta-hg@171
    60
	public static class ColumnDescriptor {
franta-hg@171
    61
franta-hg@171
    62
		private final int type;
franta-hg@171
    63
		private final String typeName;
franta-hg@171
    64
		private final String label;
franta-hg@171
    65
		private final String name;
franta-hg@171
    66
franta-hg@171
    67
		public ColumnDescriptor(int type, String typeName, String label, String name) {
franta-hg@171
    68
			this.type = type;
franta-hg@171
    69
			this.typeName = typeName;
franta-hg@171
    70
			this.label = label;
franta-hg@171
    71
			this.name = name;
franta-hg@171
    72
		}
franta-hg@171
    73
	}
franta-hg@171
    74
}