Guest User

Untitled

a guest
Feb 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public void excluir(ModeloObjeto modelo) throws Exception{
  2. Connection conexao = CriaConexao.getConexao();
  3. PreparedStatement ps;
  4. ps = conexao.prepareCall("DELETE FROM `funcionalidade_celular` WHERE `nome_cel` LIKE ?");
  5. ps.setString(1, "'"+modelo.getModelo()+"'");
  6. executar(ps);
  7. }
Add Comment
Please, Sign In to add comment