()
| 61 | private Map<String, StatementPool> stmtPool = new HashMap<>(); |
| 62 | |
| 63 | public static DbSQL getSingleton() { |
| 64 | if (singleton == null) { |
| 65 | singleton = new DbSQL(); |
| 66 | } |
| 67 | return singleton; |
| 68 | } |
| 69 | |
| 70 | static void reset() { |
| 71 | dbProperties = null; |
no outgoing calls
no test coverage detected