Results 1 to 2 of 2
Thread: Select Count
- 04-07-2008, 03:51 PM #1
Member
- Join Date
- Apr 2008
- Posts
- 1
- Rep Power
- 0
Select Count
The following is sql code which checks for multiple “titles” with the same value (less than or equal to 3)
"SELECT count(*)<=3 FROM module WHERE title='?'".
I am trying to write a snippet of code that does a select count(*) from module where title=? (above code), and then if the result of that is 3=3 then do the INSERT (following code) else display an error message without inserting the record.
In simple terms the following code should only execute if the above code is true, else display a message without saving. can someone please help me out as I am kind of stuck.
PreparedStatement new_module = connection.prepareStatement("INSERT INTO module (room_number, module_code, title, provider, duration, time_slot, weekdays)"+ "VALUES(?,?,?,?,?,?,?)");
new_module.setString(1, request.getParameter("room_number"));
new_module.setString(2, request.getParameter("module_code"));
new_module.setString(3, request.getParameter("title"));
new_module.setString(4, request.getParameter("provider"));
new_module.setInt(5, 1);
new_module.setString(6, request.getParameter("time_slot"));
new_module.setString(7, request.getParameter("weekdays"));
new_module.executeUpdate();
connection.commit();
new_module.close();
response.sendRedirect("index.jsp");
connection.setAutoCommit(savedCommitValue);
}
- 04-29-2008, 09:02 AM #2
Member
- Join Date
- Dec 2007
- Location
- Mumbai, India
- Posts
- 37
- Rep Power
- 0
Similar Threads
-
How to get the count of all the lines in a file
By Java Tip in forum java.ioReplies: 0Last Post: 04-06-2008, 07:45 PM -
Getting row count
By Java Tip in forum Java TipReplies: 0Last Post: 02-11-2008, 08:49 AM -
how to count 2 inserts together?
By kim85 in forum New To JavaReplies: 0Last Post: 01-20-2008, 11:25 AM -
making a count down timer using java
By saytri in forum New To JavaReplies: 3Last Post: 12-29-2007, 09:49 PM -
Getting row count from executeQuery()
By Java Tip in forum Java TipReplies: 0Last Post: 12-05-2007, 02:31 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks