Archived
0

move sources to src/main/java

This commit is contained in:
Dico200
2017-11-15 18:58:35 +00:00
parent 64ac42df88
commit a1a03fdad1
58 changed files with 183 additions and 182 deletions

View File

@@ -0,0 +1,16 @@
package main.java.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);
}
}