(final Tx txItem)
| 317 | } |
| 318 | |
| 319 | public void add(final Tx txItem) { |
| 320 | try { |
| 321 | this.mDb.getConn().setAutoCommit(false); |
| 322 | addTxToDb(this.mDb.getConn(), txItem); |
| 323 | this.mDb.getConn().commit(); |
| 324 | } catch (SQLException e) { |
| 325 | e.printStackTrace(); |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | public void addTxs(List<Tx> txItems) { |
| 330 | try { |
no test coverage detected