summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/elements/MysqlResult.java
blob: 6db0769049b2e2bebcae2a4fd1bd14b8abb76fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.redstoner.misc.mysql.elements;

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

public class MysqlResult {
	private ResultSet results;
	
	public MysqlResult(ResultSet results) {
		this.results = results;
	}
	
	public Object getObject(int columnIndex, Class<?> type) throws SQLException {
		return results.getObject(columnIndex, type);
	}
}