Method prepareCall(String sql)
Return type: java.sql.CallableStatement
Member of: java.sql.Connection
[api documentation ] [ main menu]

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

1 CallableStatement cstat = connection.prepareCall(
2 c[i].prepareCall("warning");
3 P6CallableStatement p6cs = (P6CallableStatement) connection.prepareCall("select sysdate from dual");
4 conn.prepareCall("INSERT INTO Files (Path,Name) VALUES (?,?)");
5 mockConnection.prepareCall("my query");
6 CallableStatement call = con.prepareCall (func + pkgName + "getInt (?) }");
7 getConnection().prepareCall ("{ ? = call FUNC_INS_foo"
8 conn.prepareCall(m_QueryParser.getSQLQuery());
9 CallableStatement cs = con.prepareCall(SQL);
10 callableStatement = p_connection.prepareCall(p_query);
11 CallableStatement cstmt = getConnectionRO().prepareCall(SQL);
12 PreparedStatement s = _con.prepareCall( query );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.