TSDBResultSetMetaData.java 6.6 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
/***************************************************************************
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *****************************************************************************/
package com.taosdata.jdbc;

import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.sql.Types;
import java.util.List;

public class TSDBResultSetMetaData implements ResultSetMetaData {

	List<ColumnMetaData> colMetaDataList = null;

	public TSDBResultSetMetaData(List<ColumnMetaData> metaDataList) {
		this.colMetaDataList = metaDataList;
	}

	public <T> T unwrap(Class<T> iface) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public boolean isWrapperFor(Class<?> iface) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public int getColumnCount() throws SQLException {
		return colMetaDataList.size();
	}

	public boolean isAutoIncrement(int column) throws SQLException {
		return false;
	}

	public boolean isCaseSensitive(int column) throws SQLException {
		return false;
	}

	public boolean isSearchable(int column) throws SQLException {
		if (column == 1) {
			return true;
		}
		return false;
	}

	public boolean isCurrency(int column) throws SQLException {
		return false;
	}

	public int isNullable(int column) throws SQLException {
		if (column == 1) {
			return columnNoNulls;
		}
		return columnNullable;
	}

	public boolean isSigned(int column) throws SQLException {
		ColumnMetaData meta = this.colMetaDataList.get(column - 1);
		switch (meta.getColType()) {
		case TSDBConstants.TSDB_DATA_TYPE_TINYINT:
		case TSDBConstants.TSDB_DATA_TYPE_SMALLINT:
		case TSDBConstants.TSDB_DATA_TYPE_INT:
		case TSDBConstants.TSDB_DATA_TYPE_BIGINT:
		case TSDBConstants.TSDB_DATA_TYPE_FLOAT:
		case TSDBConstants.TSDB_DATA_TYPE_DOUBLE:
			return true;
		default:
			return false;
		}
	}

	public int getColumnDisplaySize(int column) throws SQLException {
		return colMetaDataList.get(column - 1).getColSize();
	}

	public String getColumnLabel(int column) throws SQLException {
		return colMetaDataList.get(column - 1).getColName();
	}

	public String getColumnName(int column) throws SQLException {
		return colMetaDataList.get(column - 1).getColName();
	}

	public String getSchemaName(int column) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public int getPrecision(int column) throws SQLException {
		ColumnMetaData columnMetaData = this.colMetaDataList.get(column - 1);
		switch (columnMetaData.getColType()) {
		case TSDBConstants.TSDB_DATA_TYPE_FLOAT:
			return 5;
		case TSDBConstants.TSDB_DATA_TYPE_DOUBLE:
			return 9;
		case TSDBConstants.TSDB_DATA_TYPE_BINARY:
		case TSDBConstants.TSDB_DATA_TYPE_NCHAR:
			return columnMetaData.getColSize();
		default:
			return 0;
		}
	}

	public int getScale(int column) throws SQLException {
		ColumnMetaData meta = this.colMetaDataList.get(column - 1);
		switch (meta.getColType()) {
		case TSDBConstants.TSDB_DATA_TYPE_FLOAT:
			return 5;
		case TSDBConstants.TSDB_DATA_TYPE_DOUBLE:
			return 9;
		default:
			return 0;
		}
	}

	public String getTableName(int column) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public String getCatalogName(int column) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public int getColumnType(int column) throws SQLException {
		ColumnMetaData meta = this.colMetaDataList.get(column - 1);
		switch (meta.getColType()) {
		case TSDBConstants.TSDB_DATA_TYPE_BOOL:
			return java.sql.Types.BIT;
		case TSDBConstants.TSDB_DATA_TYPE_TINYINT:
			return java.sql.Types.TINYINT;
		case TSDBConstants.TSDB_DATA_TYPE_SMALLINT:
			return java.sql.Types.SMALLINT;
		case TSDBConstants.TSDB_DATA_TYPE_INT:
			return java.sql.Types.INTEGER;
		case TSDBConstants.TSDB_DATA_TYPE_BIGINT:
			return java.sql.Types.BIGINT;
		case TSDBConstants.TSDB_DATA_TYPE_FLOAT:
			return java.sql.Types.FLOAT;
		case TSDBConstants.TSDB_DATA_TYPE_DOUBLE:
			return java.sql.Types.DOUBLE;
		case TSDBConstants.TSDB_DATA_TYPE_BINARY:
			return java.sql.Types.CHAR;
		case TSDBConstants.TSDB_DATA_TYPE_TIMESTAMP:
			return java.sql.Types.BIGINT;
		case TSDBConstants.TSDB_DATA_TYPE_NCHAR:
			return java.sql.Types.CHAR;
		}
		throw new SQLException(TSDBConstants.INVALID_VARIABLES);
	}

	public String getColumnTypeName(int column) throws SQLException {
		ColumnMetaData meta = this.colMetaDataList.get(column - 1);
		return TSDBConstants.DATATYPE_MAP.get(meta.getColType());
	}

	public boolean isReadOnly(int column) throws SQLException {
		return true;
	}

	public boolean isWritable(int column) throws SQLException {
		return false;
	}

	public boolean isDefinitelyWritable(int column) throws SQLException {
		throw new SQLException(TSDBConstants.UNSUPPORT_METHOD_EXCEPTIONZ_MSG);
	}

	public String getColumnClassName(int column) throws SQLException {
		int columnType = getColumnType(column);
		String columnClassName = "";
		switch (columnType) {
		    case Types.TIMESTAMP:
		        columnClassName = Timestamp.class.getName();
                break;
            case Types.CHAR:
                columnClassName = String.class.getName();
                break;
            case Types.DOUBLE:
                columnClassName = Double.class.getName();
                break;
            case Types.FLOAT:
                columnClassName = Float.class.getName();
                break;
            case Types.BIGINT:
                columnClassName = Long.class.getName();
                break;
            case Types.INTEGER:
                columnClassName = Integer.class.getName();
                break;
			case Types.SMALLINT:
				columnClassName = Short.class.getName();
                break;
            case Types.TINYINT:
                columnClassName = Byte.class.getName();
                break;
            case Types.BIT:
                columnClassName = Boolean.class.getName();
                break;
		}
        return columnClassName;
	}
}