Beispiel #1
0
 public void setDeleted(Integer deleted) throws SQLException {
   _struct.setAttribute(2, deleted);
 }
Beispiel #2
0
 /* ORAData interface */
 @Override
 public Datum toDatum(Connection c) throws SQLException {
   return _struct.toDatum(c, _SQL_NAME);
 }
Beispiel #3
0
 @DbProp
 public Integer getDeleted() throws SQLException {
   return (Integer) _struct.getAttribute(2);
 }
Beispiel #4
0
 public void setPersonName(String personName) throws SQLException {
   _struct.setAttribute(1, personName);
 }
Beispiel #5
0
 @DbProp
 public String getPersonName() throws SQLException {
   return (String) _struct.getAttribute(1);
 }
Beispiel #6
0
 public void setId(Integer id) throws SQLException {
   _struct.setAttribute(0, id);
 }
Beispiel #7
0
 /* accessor methods */
 @Override
 @DbProp
 public Integer getId() throws SQLException {
   return (Integer) _struct.getAttribute(0);
 }