Uses of Class
com.mckoi.database.RowData
-
Packages that use RowData Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of RowData in com.mckoi.database
Methods in com.mckoi.database that return RowData Modifier and Type Method Description RowData
DataTable. createRowDataObject(QueryContext context)
Generates an empty RowData object for 'addRow'ing into the Table.RowData
TableModificationEvent. getRowData()
Returns the RowData object that represents the change that is being made to the table either by an INSERT or UPDATE.Methods in com.mckoi.database with parameters of type RowData Modifier and Type Method Description void
DataTable. add(RowData row_data)
Adds a given 'RowData' object to the table.void
DataTable. add(RowData[] row_data_arr)
Adds an array of 'RowData' objects to the table.int
MutableTableDataSource. addRow(RowData row_data)
Adds a row to the source.int
MutableTableDataSource. updateRow(int row_index, RowData row_data)
Updates a row in the source.
-