Archived
0

Initial commit

This commit is contained in:
Pepich
2017-11-15 18:38:45 +01:00
parent 9e9b4df5b7
commit 51380d886e
54 changed files with 1900 additions and 0 deletions

View File

@@ -0,0 +1,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);
}
}