| Adding custom code / Understanding what gets generated | |
This file manages the database SELECT, INSERT, UPDATE, and DELETE statements.
Find this file in the Intermediate Files folder listed with your database schema in your project.
| Generated function | Function features | 
|---|---|
selectRowByKey  | 
Select a row identified by the primary key in the table. | 
insertRowByKey  | 
Insert a row in the table and return the table keys. | 
updateRowByKey  | 
Update a row identified by the primary key in the table. | 
deleteRowByKey  | 
Delete a row identified by the primary key in the table. | 
deleteRowByKeyWithConcurrentAccess  | 
Delete a row identified by the primary key in the table if the concurrent access is successful. | 
deleteReferencingRowsByKey  | 
Delete rows referencing the primary key of the table. | 
checkRowByKeyWithConcurrentAccess  | 
Check if a row identified by the primary key in the table has been modified or deleted. | 
setDefaultValuesFromDBSchema  | 
Set data with the default values coming from the DB schema. |