package com.quadcap.sql.types;
/* Copyright 1999 - 2003 Quadcap Software. All rights reserved.
*
* This software is distributed under the Quadcap Free Software License.
* This software may be used or modified for any purpose, personal or
* commercial. Open Source redistributions are permitted. Commercial
* redistribution of larger works derived from, or works which bundle
* this software requires a "Commercial Redistribution License"; see
* http://www.quadcap.com/purchase.
*
* Redistributions qualify as "Open Source" under one of the following terms:
*
* Redistributions are made at no charge beyond the reasonable cost of
* materials and delivery.
*
* Redistributions are accompanied by a copy of the Source Code or by an
* irrevocable offer to provide a copy of the Source Code for up to three
* years at the cost of materials and delivery. Such redistributions
* must allow further use, modification, and redistribution of the Source
* Code under substantially the same terms as this license.
*
* Redistributions of source code must retain the copyright notices as they
* appear in each source code file, these license terms, and the
* disclaimer/limitation of liability set forth as paragraph 6 below.
*
* Redistributions in binary form must reproduce this Copyright Notice,
* these license terms, and the disclaimer/limitation of liability set
* forth as paragraph 6 below, in the documentation and/or other materials
* provided with the distribution.
*
* The Software is provided on an "AS IS" basis. No warranty is
* provided that the Software is free of defects, or fit for a
* particular purpose.
*
* Limitation of Liability. Quadcap Software shall not be liable
* for any damages suffered by the Licensee or any third party resulting
* from use of the Software.
*/
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;
import com.quadcap.util.Debug;
/**
* The SQL <b>TIME</b> type.
*
* @author Stan Bailes
*/
public class TypeTime implements Type, Externalizable {
public static final TypeTime typeTime = new TypeTime();
int precision = 0;
boolean tz = false;
public TypeTime() {}
public TypeTime(int precision, boolean tz) {
this.precision = precision;
this.tz = tz;
}
public String getTypeName() {
return "TIME";
}
public int getJDBCType() { return Types.TIME; }
public String getJDBCClassName() { return "java.sql.Time"; }
public int getPrecision() { return precision; }
public int getScale() { return 0; }
public int getMaxPrecision() { return 32; }
public int getMinScale() { return -1; }
public int getMaxScale() { return -1; }
public boolean isCharType() { return false; }
public boolean isCaseSensitive() { return false; }
public boolean isCurrency() { return false; }
public boolean isSigned() { return false; }
public String toString() {
StringBuffer sb = new StringBuffer("TIME");
if (precision > 0) {
sb.append('(');
sb.append(Integer.toString(precision));
sb.append(')');
}
if (tz) sb.append(" WITH TIME ZONE");
return sb.toString();
}
public int getDisplayWidth() {
int wid = 8;
if (precision > 0) wid += (precision + 1);
if (tz) wid += 6;
return wid;
}
public void readExternal(ObjectInput in) throws IOException {
precision = in.read();
tz = in.read() == 1;
}
public void writeExternal(ObjectOutput out) throws IOException {
out.write(precision);
out.write(tz ? 1 : 0);
}
public Value convert(Value v) throws ValueException {
return v.convert(this);
}
public String getCreateParams() {
return null;
}
}
|