Uses of Class
guru.mikelue.jdut.datagrain.DataRow
-
Packages that use DataRow Package Description guru.mikelue.jdut.datagrain This package contains the primary objects of bean for data definitions.guru.mikelue.jdut.jdbc.function This package contains out-of-box builder forJdbcSupplierorJdbcRunnableon processing ofResultSet,Statement, etc.guru.mikelue.jdut.jdbc.util The miscellaneous utilities forJDBCis dropped to this package.guru.mikelue.jdut.operation The most important objects to effect data to database.guru.mikelue.jdut.vendor.mssql Provides specific functions of MS SQL Server. -
-
Uses of DataRow in guru.mikelue.jdut.datagrain
Methods in guru.mikelue.jdut.datagrain that return DataRow Modifier and Type Method Description static DataRowDataRow. build(Consumer<DataRow.Builder> builderConsumer)Builds row byConsumerofDataRow.Builder.static DataRowDataRow. build(Consumer<DataRow.Builder> builderConsumer, DataRow existingRow)Builds row byConsumerofDataRow.Builderand existing row.protected DataRowDataRow. clone()DataRowDataGrain. getRow(int index)Gets a row by index(starts with "0").Methods in guru.mikelue.jdut.datagrain that return types with arguments of type DataRow Modifier and Type Method Description List<DataRow>DataGrain. getRows()Gets data of rows.Methods in guru.mikelue.jdut.datagrain with parameters of type DataRow Modifier and Type Method Description static DataRowDataRow. build(Consumer<DataRow.Builder> builderConsumer, DataRow existingRow)Builds row byConsumerofDataRow.Builderand existing row.Constructor parameters in guru.mikelue.jdut.datagrain with type arguments of type DataRow Constructor Description DataGrain(List<DataRow> rows)Constructs this object by list of rows. -
Uses of DataRow in guru.mikelue.jdut.jdbc.function
Methods in guru.mikelue.jdut.jdbc.function with parameters of type DataRow Modifier and Type Method Description static JdbcRunnableDbStatement. buildRunnableForPreparedStatement(Connection conn, String sql, List<String> nameOfColumns, DataRow dataRow, JdbcVoidFunction<? super PreparedStatement> executor)Builds runnable to set-upPreparedStatementand fed it to void function.static <T> JdbcSupplier<T>DbStatement. buildSupplierForPreparedStatement(Connection conn, String sql, List<String> nameOfColumns, DataRow dataRow, JdbcFunction<? super PreparedStatement,? extends T> supplier)Builds supplier to set-upPreparedStatementand fed it to function. -
Uses of DataRow in guru.mikelue.jdut.jdbc.util
Methods in guru.mikelue.jdut.jdbc.util with parameters of type DataRow Modifier and Type Method Description static voidPreparedStatements. setParameter(PreparedStatement statement, DataRow dataRow, String columnName, int paramIndex)Sets a parameter over statement byDataRow. -
Uses of DataRow in guru.mikelue.jdut.operation
Methods in guru.mikelue.jdut.operation that return DataRow Modifier and Type Method Description static DataRowDefaultOperators. doDelete(Connection conn, DataRow dataRow)Default operator of delete.static DataRowDefaultOperators. doDeleteAll(Connection conn, DataRow dataRow)Default operator of delete all.static DataRowDefaultOperators. doInsert(Connection conn, DataRow dataRow)Default operator of insertion.static DataRowDefaultOperators. doRefresh(Connection conn, DataRow dataRow)Default operator of refresh.static DataRowDefaultOperators. doTruncate(Connection conn, DataRow dataRow)Default operator of truncate.static DataRowDefaultOperators. doUpdate(Connection conn, DataRow dataRow)Default operator of update.static DataRowDataRowOperator. none(Connection conn, DataRow dataRow)Does nothing.DataRowDataRowOperator. operate(Connection connection, DataRow dataRow)OperatesDataRowbyConnection.DataRowTableBasedOperator. operate(Connection conn, DataRow dataRow)OperatesDataRowbyConnection.Methods in guru.mikelue.jdut.operation that return types with arguments of type DataRow Modifier and Type Method Description static List<DataRow>DataRowsOperator. none(Connection conn, List<DataRow> dataRows)Does nothing.List<DataRow>DataRowsOperator. operate(Connection connection, List<DataRow> dataRows)Methods in guru.mikelue.jdut.operation with parameters of type DataRow Modifier and Type Method Description static DataRowDefaultOperators. doDelete(Connection conn, DataRow dataRow)Default operator of delete.static DataRowDefaultOperators. doDeleteAll(Connection conn, DataRow dataRow)Default operator of delete all.static DataRowDefaultOperators. doInsert(Connection conn, DataRow dataRow)Default operator of insertion.static DataRowDefaultOperators. doRefresh(Connection conn, DataRow dataRow)Default operator of refresh.static DataRowDefaultOperators. doTruncate(Connection conn, DataRow dataRow)Default operator of truncate.static DataRowDefaultOperators. doUpdate(Connection conn, DataRow dataRow)Default operator of update.static DataRowDataRowOperator. none(Connection conn, DataRow dataRow)Does nothing.DataRowDataRowOperator. operate(Connection connection, DataRow dataRow)OperatesDataRowbyConnection.DataRowTableBasedOperator. operate(Connection conn, DataRow dataRow)OperatesDataRowbyConnection.Method parameters in guru.mikelue.jdut.operation with type arguments of type DataRow Modifier and Type Method Description static List<DataRow>DataRowsOperator. none(Connection conn, List<DataRow> dataRows)Does nothing.List<DataRow>DataRowsOperator. operate(Connection connection, List<DataRow> dataRows) -
Uses of DataRow in guru.mikelue.jdut.vendor.mssql
Methods in guru.mikelue.jdut.vendor.mssql that return DataRow Modifier and Type Method Description DataRowIdentityInsertOperator. operate(Connection connection, DataRow dataRow)OperatesDataRowbyConnection.Methods in guru.mikelue.jdut.vendor.mssql with parameters of type DataRow Modifier and Type Method Description static booleanIdentityInsertOperator. hasIdentityColumn(DataRow dataRow)Checks whether or not a data row has identity data.static booleanIdentityInsertOperator. identityChecked(DataRow dataRow)Checks whether or not the table of data row has enabled identity.
If it is unknown, this method gives true value.DataRowIdentityInsertOperator. operate(Connection connection, DataRow dataRow)OperatesDataRowbyConnection.
-