Пример #1
0
  /** @inheritdoc */
  @Override
  protected void bindValues(SQLiteStatement stmt, Trip entity) {
    stmt.clearBindings();

    String id = entity.getId();
    if (id != null) {
      stmt.bindString(1, id);
    }
    stmt.bindString(2, entity.getRouteId());
  }