friends when i use to insert data in database using execute update there is no problem ,but when i used prepared statement
to insert the same data in ms access its not working.Its funny that the programme is running on sql server without any problem
here is the code,please sort it out
few lines of code....
try
{
Connection con1=DriverManager.getConnection("jdbc

dbc:sraturi");
PreparedStatement pst=con1.prepareStatement("INSERT INTO sr values(?,?,?)");
System.out.println("before update");
pst.setString(1,args[0]);
pst.setInt(2,Integer.parseInt(args[1]));
pst.setInt(3,Integer.parseInt(args[2]));
System.out.print("ok");
int r =pst.executeUpdate();
System.out.print("update completed" + r );
}
catch (Exception e)
{
System.out.println(" ");
}
}
}
thanx in advance