Method setFloat(int parameterIndex, float x)
Return type: void
Member of:
java.sql.PreparedStatement
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
ps.setFloat(index, ((Float) value).floatValue());
2
public void setFloat(int parameterIndex, float x) throws SQLException { _stmt.setFloat( parameterIndex, x); }
3
public void setFloat(int parameterIndex, float x) throws SQLException { checkOpen(); _stmt.setFloat(parameterIndex,x);}
4
_cs.setFloat(p1, p2);
5
statement.setFloat(index, _value);
6
prepStmtPassthru.setFloat(p0,p1);
7
preparedStatement.setFloat(parameterIndex, x);
8
m_pstmt.setFloat (parameterIndex, x);
9
delegate_.setFloat( parameterIndex, x );
10
_ps.setFloat(_ind, field.floatValue());
11
preparedStatement.setFloat(position, ((java.lang.Float) value).floatValue());
12
lstmt.setFloat(iPosn,rs.getFloat(lsName));
13
stmt.setFloat(i, node.getFloatValue(key));
14
callableStatement.setFloat(i + 2, ((Float) p_parameters[i]).floatValue());
15
stmt.setFloat(i++, ((Float) o).floatValue());
16
statement.setFloat(position, f.floatValue());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.