MySQL JDBC Fetch Data Using CallableStatement Interface - BunksAllowed

BunksAllowed is an effort to facilitate Self Learning process through the provision of quality tutorials.

Random Posts

MySQL JDBC Fetch Data Using CallableStatement Interface

Share This



package com.t4b.jdbc.mysql.test; import java.sql.CallableStatement; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; public class TestMain { static { try { Class.forName("com.mysql.jdbc.Driver").newInstance(); } catch (Exception ex) { ex.printStackTrace(); } } public static void main(String[] args) { String publisher = "Willey"; Connection con = null; CallableStatement cstmt = null; ResultSet rs = null; try { con = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/library", "root", "pass123"); cstmt = con.prepareCall("{call book_select_by_pub_proc(?)}"); cstmt.setString(1, publisher); rs = cstmt.executeQuery(); while (rs.next()) { System.out.println( rs.getString("name") + " : " + rs.getString("author") + " : " + rs.getString("publisher")); } } catch (SQLException e) { e.printStackTrace(); } finally { if (con != null) { try { con.close(); } catch (SQLException e) { e.printStackTrace(); } } if (cstmt != null) { try { cstmt.close(); } catch (SQLException e) { e.printStackTrace(); } } } } }

Happy Exploring!



No comments:

Post a Comment