norm.impl.QueryResultImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of norm Show documentation
Show all versions of norm Show documentation
a small java orm library.
package norm.impl;
import norm.BeanException;
import norm.Configuration;
import norm.QueryException;
import norm.result.QueryResult;
import norm.result.QueryResultItem;
import norm.util.TypeUtils;
import ognl.Ognl;
import ognl.OgnlException;
import java.io.Serializable;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public final class QueryResultImpl implements QueryResult,Serializable {
private static final long serialVersionUID = 1169219576809348723L;
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy