Want more features on Pastebin? Sign Up, it's FREE!
Guest

FAILED

By: a guest on Oct 6th, 2011  |  syntax: None  |  size: 0.39 KB  |  views: 53  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public void addRental(int rentalID, int staffID, String title, String name)
  2.     {
  3.        
  4.        myQuery = "Insert Into tblRentals (Rental_ID, Staff_ID, Title, Name) Values ("+ rentalID + ", "+staffID +", '"+ title+ "', '" + name +"')";
  5.        try{
  6.            DB.update(myQuery);
  7.        }catch (Exception e)
  8.        {
  9.            e.printStackTrace();
  10.            
  11.        }
  12.        
  13.     }
  14.  
clone this paste RAW Paste Data