Checking the database
The code currently uploaded to my java project at covers only the front end of the application. I have not formalized the back end. It remains a collection of code scraps, which I use from time to time to check what is in the database, or less often to change what is in the database. I have not formalized it because I am currently the only user. In previous incarnations of the app I have incorporated data queries, with all sorts of filters and user customization, which no one has understood how to use. My current ad hoc query code is as follows: public class ItemdbQuery { public static void main(String args[]) throws ClassNotFoundException, SQLException { /** * These are shared variable declarations */ Connection connect = null; Statement stat = null; /** * This is the start of the main code. */ System.out.println("try connection"); try { // Load database driver Class.forName("org.apache.derby.jdbc.ClientDriver"); // Make connection String connn = ...