Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: illasreenu
  • Order by date
  1. illasreenu

    JDBC Transaction Processing

    In order to be able to do a roll back you will have to set autocommit to false before you start your Transacations. Ex. con.setAutoCommit(false); Sreeni
  2. illasreenu

    Callable statement question -- what am I missing?

    Try this.. timeperiod="harmerd." + timeperiod; CallableStatement cs = con2.prepareCall("{call harmerd.FERPmonthlybyregion (?,?)}"); cs.setString(1, timeperiod); cs.setString(2, region); cs.executeQuery();

Part and Inventory Search

Back
Top