📄 doubletype.java
字号:
//$Id: DoubleType.java,v 1.5.2.4 2003/11/21 16:06:40 oneovthafew Exp $
package net.sf.hibernate.type;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;
/**
* <tt>double</tt>: A type that maps an SQL DOUBLE to a Java Double.
* @author Gavin King
*/
public class DoubleType extends PrimitiveType {
public Object get(ResultSet rs, String name) throws SQLException {
return new Double( rs.getDouble(name) );
}
public Class getPrimitiveClass() {
return double.class;
}
public Class getReturnedClass() {
return Double.class;
}
public void set(PreparedStatement st, Object value, int index)
throws SQLException {
st.setDouble( index, ( (Double) value ).doubleValue() );
}
public int sqlType() {
return Types.DOUBLE;
}
public String getName() { return "double"; }
public String objectToSQLString(Object value) throws Exception {
return value.toString();
}
public Object fromString(String xml) {
return new Double(xml);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -