All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaoleilu.hutool.db.handler.NumberHandler Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
package com.xiaoleilu.hutool.db.handler;

import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * 处理为数字结果,当查询结果为单个数字时使用此处理器(例如select count(1))
 * @author loolly
 *
 */
public class NumberHandler implements RsHandler{
	
	/**
	 * 创建一个 NumberHandler对象
	 * @return NumberHandler对象
	 */
	public static NumberHandler create() {
		return new NumberHandler();
	}

	@Override
	public Number handle(ResultSet rs) throws SQLException {
		return rs.next() ? rs.getBigDecimal(1) : null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy