Skip to content

Instantly share code, notes, and snippets.

View fredghostkyle's full-sized avatar
💭
Uni

fredghostkyle fredghostkyle

💭
Uni
View GitHub Profile
@mikbuch
mikbuch / print-resultset.java
Last active November 18, 2020 04:07 — forked from jimjam88/print-resultset.java
Print an ResultSet to the console (STDOUT)
// Imports required
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
/**
* Print a result set to system out.
*
* @param rs The ResultSet to print
* @throws SQLException If there is a problem reading the ResultSet