]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/Gigi.java
fix: SQL change database call pattern
[gigi.git] / src / org / cacert / gigi / Gigi.java
index b7605e876373d4d1637375a29acda736559da3ed..209175ab157fe4b8b3ed569f7c246579423341c8 100644 (file)
@@ -156,6 +156,13 @@ public class Gigi extends HttpServlet {
             putPage(UserTrainings.SUPPORT_PATH, new UserTrainings(true), null);
 
             putPage(PasswordResetPage.PATH, new PasswordResetPage(), null);
+            putPage("/dbs", new Page("Database set") {
+
+                @Override
+                public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
+                    DatabaseConnection.getInstance().lockedStatements(resp.getWriter());
+                }
+            }, "Database set");
 
             if (testing) {
                 try {