Ejemplo n.º 1
0
  /** @inheritdoc */
  @Override
  protected void bindValues(SQLiteStatement stmt, Channel entity) {
    stmt.clearBindings();

    Long id = entity.getId();
    if (id != null) {
      stmt.bindLong(1, id);
    }
    stmt.bindString(2, entity.getTitle());
    stmt.bindString(3, entity.getURL());
  }