Method setEscapeProcessing(boolean enable)
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 statement.setEscapeProcessing( true );
2 ps.setEscapeProcessing(false);
3 stmt.setEscapeProcessing(true);
4 ps.setEscapeProcessing(false);
5 statement.setEscapeProcessing( true );
6 public void setEscapeProcessing(boolean enable) throws SQLException { _stmt.setEscapeProcessing( enable); }
7 public void setEscapeProcessing(boolean enable) throws SQLException { checkOpen();_stmt.setEscapeProcessing(enable);}
8 _cs.setEscapeProcessing(p1);
9 stmt2.setEscapeProcessing(false);
10 m_pstmt.setEscapeProcessing(enable);
11 delegate_.setEscapeProcessing( enable );
12 sqlStatement.setEscapeProcessing(stmtEscapeProcessing);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.