Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I'm designing a GUI using Java Netbeans and am trying to insert values into the table from the GUI fields. It shows no error , but nothing is getting inserted. Here is my code :
Statement stmt = null; try { String sql = "Insert into Elective (subject_code,topic,syllabus,credit,Expert_ID,startsession,endsession) values (?,?,?,?,?,?,?)"; pst = conn.prepareStatement(sql); String subject = Subject_code.getSelectedItem().toString(); pst.setString(1, subject); pst.setString(2, topic.getText()); pst.setString(3, syllabus.getText()); pst.setString(4, credit.getText()); String Expert = Expert_ID.getSelectedItem().toString(); pst.setString(5, Expert); int y1 = startsession.getYear(); int y2 = endsession.getYear(); pst.setInt(6, y1); pst.setInt(7, y2); //ResultSet executeQuery = pst.executeQuery(); stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT * FROM Elective;"); while (rs.next()) { String subject_code1 = rs.getString("subject_code"); String topic1 = rs.getString("topic"); String syllabus1 = rs.getString("syllabus"); String credit1 = rs.getString("credit"); String Expert_ID1 = rs.getString("Expert_ID"); int startsession1 = rs.getInt("startsession"); int endsession1 = rs.getInt("endsession"); System.out.println("Subject Code = " + subject_code1); System.out.println("Topic = " + topic1); System.out.println("Syllabus=" + syllabus1); System. REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
you should use executeUpdate() to do updates to database instead of executeQuery() method and executeUpdate() doesn't return a ResultSet .
executeUpdate()
executeQuery()
ResultSet
use
pst.executeUpdate();
not
ResultSet executeQuery = pst.executeQuery();//not correct
don't know why you have commented that line.presumably that's why you don't get any error
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.