Search in sources :

Example 1 with DfDtsRowState

use of org.dbflute.helper.dataset.states.DfDtsRowState in project dbflute-core by dbflute.

the class DfDtsSqlTableWriter method doWrite.

protected void doWrite(DfDataTable table) {
    for (int i = 0; i < table.getRowSize(); ++i) {
        DfDataRow row = table.getRow(i);
        DfDtsRowState state = row.getState();
        state.update(_dataSource, row);
    }
}
Also used : DfDataRow(org.dbflute.helper.dataset.DfDataRow) DfDtsRowState(org.dbflute.helper.dataset.states.DfDtsRowState)

Aggregations

DfDataRow (org.dbflute.helper.dataset.DfDataRow)1 DfDtsRowState (org.dbflute.helper.dataset.states.DfDtsRowState)1