()
| 52 | private ConnectionSource source; |
| 53 | |
| 54 | public void start() throws Exception { |
| 55 | try { |
| 56 | source = new JdbcConnectionSource(MainHandler.getCurrentInstance() |
| 57 | .getProperty(JDBC_URL, ""), MainHandler.getCurrentInstance() |
| 58 | .getProperty(JDBC_USER, ""), MainHandler.getCurrentInstance() |
| 59 | .getProperty(JDBC_PASS, "")); |
| 60 | } catch(SQLException e) { |
| 61 | throw new Exception("Exception in source creation", e); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | @Deprecated |
| 66 | public GenericDAO<Dupe_1_4> getDupeDAO() { |
no test coverage detected