Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: What must be changed in the following code

  1. #1
    Junior Member
    Join Date
    Feb 2011
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question What must be changed in the following code

    public void update (Connection connection, String sql) 
    throws SQLException
    {
    Statement stmt = null;
     
    		try 
    		{
    			stmt = connection.createStatement();
     
    			stmt.executeUpdate(sql);
     
    			stmt.close();
    		} 
    		catch (SQLException e) 
    		{
    			e.printStackTrace();
    			throw e;
    		}
    }
    Last edited by copeg; February 2nd, 2011 at 03:13 PM.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: What must be changed in the following code

    a) Please format your code using the highlight or code tags (read the announcements on the top of each forum for instructions - I have edited your post this time). This makes your code readable.
    b) "What must be changed" is a question that is complete out of context. What must be changed for what? To compile? To run? Do you get exceptions?

  3. #3
    Member DanBrown's Avatar
    Join Date
    Jan 2011
    Posts
    134
    My Mood
    Confused
    Thanks
    1
    Thanked 12 Times in 12 Posts

    Default Re: What must be changed in the following code

    What must be changed in the following code

    Change your way of posting question.
    Thanks and Regards
    Dan Brown

    Common Java Mistakes