Skip to content
Snippets Groups Projects
Commit d275a5f7 authored by alfredo's avatar alfredo
Browse files

delete from servizi

parent 638e41ca
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,10 @@ public class DBC { ...@@ -111,6 +111,10 @@ public class DBC {
prepared.setString(1, dm); prepared.setString(1, dm);
prepared.executeUpdate(); prepared.executeUpdate();
prepared = conn.prepareStatement("DELETE FROM Servizi WHERE Domain = ?");
prepared.setString(1, dm);
prepared.executeUpdate();
} catch (SQLException e) { } catch (SQLException e) {
e.printStackTrace(); e.printStackTrace();
} finally { } finally {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment