Skip to content

Instantly share code, notes, and snippets.

@flowsurplus
flowsurplus / Delete
Created June 29, 2020 04:12
This is an exploration of SQLite using Java. There are separate classes for the insertion, retrieval, and deletion of entries in the database
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;
public class Delete {
Connection c = null;
Statement stmt = null;
//This is the method which will be called upon
public void deletePerson() {
try {