summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/elements/MysqlResult.java
blob: 1b4f246e759a8b3dadcd02137d951d1b987d31f5 (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);
	}
}