Method setCursorName(String name)
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 public void setCursorName(String name) throws SQLException { _stmt.setCursorName( name); }
2 public void setCursorName(String name) throws SQLException { checkOpen(); _stmt.setCursorName(name);}
3 public void setCursorName(String name) throws SQLException { checkOpen(); _stmt.setCursorName(name);}
4 _cs.setCursorName(p1);
5 m_pstmt.setCursorName(name);
6 delegate_.setCursorName( name );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.