diff --git a/CSE-VI-A/46_1018675_ManishButola/Client.class b/CSE-VI-A/46_1018675_ManishButola/Client.class deleted file mode 100644 index de8c2841..00000000 Binary files a/CSE-VI-A/46_1018675_ManishButola/Client.class and /dev/null differ diff --git a/CSE-VI-A/46_1018675_ManishButola/que1.java b/CSE-VI-A/46_1018675_ManishButola/que1.java deleted file mode 100644 index 2f8eb1de..00000000 --- a/CSE-VI-A/46_1018675_ManishButola/que1.java +++ /dev/null @@ -1,32 +0,0 @@ -public class SampleClass -{ - public static void main(String args[]) throws SQLException - { - Connection myConn = null; - Statement myStmt = null; - ResultSet myRs = null; - try - { - - myConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/librarys", "root" , ""); - myStmt = myConn.createStatement(); - myRs = myStmt.executeQuery("select * from book"); - while (myRs.next()) - { - System.out.println(myRs.getString("Acc_no") + ", " + myRs.getString("Title") + ", " + myRs.getString("Author") + ", " + myRs.getString("Publisher")+ ", " + -myRs.getString("Edition")); - - } - } - catch (Exception exc) - { - exc.printStackTrace(); - } - finally - { - myRs.close(); - myStmt.close(); - myConn.close(); - } - } -} \ No newline at end of file