Archived
0
This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Faucet/src/com/redstoner/misc/mysql/elements/MysqlResult.java
2017-11-15 18:38:45 +01:00

17 lines
362 B
Java

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);
}
}