*/
public void updateRecord(DBRecord rec, Connection conn)
{
// check updateable
if (isUpdateable()==false)
throw new NotSupportedException(this, "updateRecord");
// Check Arguments
if (rec == null)
throw new InvalidArgumentException("record", rec);
if (rec.isValid()==false)
throw new ObjectNotValidException(rec);