Hi java is having something precompiled sql statments through connection objects. like
[source java docs]
PreparedStatement pstmt = con.prepareStatement("UPDATE EMPLOYEES SET
SALARY = ? WHERE ID = ?");
pstmt.setBigDecimal(1, 153833.00)
pstmt.setInt(2, 110592)
Does .net have anything like this in ado.net?
thank
nrk
