Thousands of examples at your fingertips!
All classes, methods fields etc. are linked to the API documentation.
All members are listed by frequency of use or alphabetically (see left pane).
Links to examples and utility functions/classes are shown below
Interface java.sql.PreparedStatement
[api documentation] [ main menu] Search

Links to examples (only one line shown below for each example):
[add your own example]

1 selectIdStatement.setString(1, type);
2 PreparedStatement stmt = con.prepareStatement(query);
3 PreparedStatement ps = null;
4 PreparedStatement statement = conn.prepareStatement("select * from genres where upper(genreName) = ?");
5 PreparedStatement pstat = connection.prepareStatement(s);
6 putSequenceNumbers1.setInt(1, sequenceNumbers.first);
7 PreparedStatement statement = null;
8 PreparedStatement statement = null;
9 PreparedStatement statement = connection.prepareStatement(sql);
10 PreparedStatement insp = con.prepareStatement(
11 cstmt.setBigDecimal(2, Amt); // Amount IN NUMBER
12 PreparedStatement pstmt = con.prepareStatement(
13 PreparedStatement ps = connection.prepareStatement("insert into stmt_test values (?, ?)");
14 PreparedStatement ps = null;
15 PreparedStatement ps = null;
16 PreparedStatement pstmt = DB.prepareStatement(sql);
17 PreparedStatement ps = null;
18 PreparedStatement ps;
19 PreparedStatement s = null;
20 PreparedStatement pstmt = DB.prepareStatement(sql);

Links to utility classes and functions:

1 closeResultSet(ResultSet rs) org.springframework.jdbc.support.JdbcUtils
2 closeStatement(Statement stmt) org.springframework.jdbc.support.JdbcUtils
3 countParameterPlaceholders(String str, char placeholder, char delim) org.springframework.jdbc.support.JdbcUtils
4 isNumeric(int sqlType) org.springframework.jdbc.support.JdbcUtils
5 translateType(int sqlType) org.springframework.jdbc.support.JdbcUtils
6 org.sape.sqlutils.PreparedStatementHelper
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.