Method close()
Return type: void
Member of: java.sql.Statement
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 stmt.close();
2 s.close();
3 _cs.close();
4 statement.close();
5 try { _stmt.close(); } catch (Exception e) {}
6 statement.close();
7 st.close();
8 statement.close();
9 _stmt.close();
10 _stmt.close();
11 if (stmt != null) stmt.close ();
12 statement.close();
13 try { stmt.close(); }
14 stmt.close();
15 stmt.close ();
16 try{stmt.close();}
17 stmt.close();
18 stmt.close();
19 if (null != ps) { try { ps.close(); } catch (SQLException ignore) {} }
20 m_pstmt.close();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.