Small Student Project

Core Java Project : Stand alone Application by using core java : package MyJavaPackage; import java.sql.*; import java.util.Scanner; public class StudentInfo { public static void insertInfo (Connection con) throws SQLException { Scanner sc = new Scanner(System. in ); PreparedStatement pst = con.prepareStatement( "insert into student values(?,?,?,?,?)" ); System. out .println( "Enter the Roll Number of the Student :" ); int rollno = sc.nextInt(); System. out .println( "Enter the First Name of the Student :" ); String fname = sc.next(); System. out .println( "Enter the Last Name of the Student :" ); String lname = sc.next(); System. out .println( "Enter the Contact Number of the Student :" ); long contact = sc.nextInt(); System. out .println( "Enter the City of the Student :" ); String city = sc.next(); pst.setInt( 1 , ...