Skip to content
Snippets Groups Projects
Commit a2826428 authored by Tahir, Ali (UG - Comp Sci & Elec Eng)'s avatar Tahir, Ali (UG - Comp Sci & Elec Eng)
Browse files

Formatted BaseQuery

parent 99b809ad
No related branches found
No related tags found
No related merge requests found
...@@ -24,13 +24,10 @@ public class BaseQuery { ...@@ -24,13 +24,10 @@ public class BaseQuery {
protected static Connection connect; protected static Connection connect;
private final String database = "jdbc:mysql://localhost:3306/classicmodels?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"; private final String database = "jdbc:mysql://localhost:3306/classicmodels?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC";
// private static Customer customer = null;
private static List<Customer> customers = new ArrayList<Customer>(); private static List<Customer> customers = new ArrayList<Customer>();
// private static Payment payment = null;
private static List<Payment> payments = new ArrayList<Payment>(); private static List<Payment> payments = new ArrayList<Payment>();
// private static Order order = null;
private static List<Order> orders = new ArrayList<Order>(); private static List<Order> orders = new ArrayList<Order>();
public BaseQuery(String uname, String pwd) { public BaseQuery(String uname, String pwd) {
......
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