Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
static void firequery(String q)
{
try {

query=q;
Class.forName ("oracle.jdbc.OracleDriver");/*driver*/
   //System.out.println("call");
  con = DriverManager.getConnection(dbUrl, "system", "demo");

stmt = con.createStatement();
rs = stmt.executeQuery(query);
System.out.println("FIRE!!!!!!!!");
} //end try

catch(ClassNotFoundException e) {
}
catch(SQLException e) {
e.printStackTrace();
}}

I'm passing my query in firequery(s) function using following code.

String s = "Delete from Ticket where tno='"+jnumber1.getText()+"'";
humarr_conn.firequery(s);
if(query has deleted any 1 row)
JOptionPane.showMessageDialog(null, "Deleted successfully");       
else
JOptionPane.showMessageDialog(null, "Delete operation failed"); 

I'm not getting what would be my if condition? I'm using Java as FrontEnd and Oracle as backend.

I want function like mysql_rows_affected of php like in java.

Hoping for quick and positive response.

share|improve this question

1 Answer

up vote 2 down vote accepted

Use executeUpdate(String sql) instead. It returns number of record changed by the query.

See javadoc: http://docs.oracle.com/javase/1.4.2/docs/api/java/sql/Statement.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.