MCPcopy Index your code
hub / github.com/castello/spring_basic / delete

Method delete

ch4/BoardDaoImpl.java:25–31  ·  view source on GitHub ↗
(Integer bno, String writer)

Source from the content-addressed store, hash-verified

23 } // int delete(String statement)
24
25 @Override
26 public int delete(Integer bno, String writer) throws Exception {
27 Map map = new HashMap();
28 map.put("bno", bno);
29 map.put("writer", writer);
30 return session.delete(namespace+"delete", map);
31 } // int delete(String statement, Object parameter)
32
33 public int insert(BoardDto dto) throws Exception {
34 return session.insert(namespace+"insert", dto);

Callers

nothing calls this directly

Calls 1

deleteMethod · 0.65

Tested by

no test coverage detected