Dear All, Is it possible to get ResultSet object from executeUpdate(). It would be very useful if you could send me the information ASAP. Thanking you in advance. Regards, Venkat
Venkat, The executeUpdate() RETURNS "either the row count for INSERT, UPDATE or DELETE statements, or 0 for SQL statements that return nothing, that is for DDL statements" So, u have to use executeQuery() only. Mahesh