Uses of Class
com.jbstrap.core.dao.base.NoTransaction
-
Uses of NoTransaction in com.jbstrap.core.meta
Modifier and TypeMethodDescriptionInMemoryDataDescriptor.openTransaction()
As the DataDescriptor does not support transaction handling, the method returnsnull
.Modifier and TypeMethodDescriptionlong
InMemoryDataDescriptor.countData
(NoTransaction transaction, Client client, Criteria criteria) Gets the number of records in the database.InMemoryDataDescriptor.find
(NoTransaction transaction, Client client, Criteria criteria, List<Order> orders, int startRow, int endRow) Initiates a query by using the DataDescriptor.InMemoryDataDescriptor.findById
(NoTransaction transaction, Client client, Object... id) Fetches a record from the database using the record’s unique ID.InMemoryDataDescriptor.remove
(NoTransaction transaction, Client client, List<Record> records) Initiates a delete operation by using a DataDescriptor.
Use the method to delete one or more records from the database using a DataDescriptor.InMemoryDataDescriptor.save
(NoTransaction transaction, Client client, List<Record> records) Initiates a save operation using a DataDescriptor.
Use the method to save one or more records to the database using the DataDescriptor.