-
-
Notifications
You must be signed in to change notification settings - Fork 26.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Active Record pattern #79
Comments
I may help with implementing this pattern. Please let me know if it's oaky with you. |
Sure, go ahead, your contribution is welcome! |
Okay, I will work on this pattern |
Pull request #206 is prepared. Please review. |
I've fixed the points raised and left my comments |
jOOQ uses Active Record pattern: http://www.jooq.org/ |
Described in book "Patterns of Enterprise Application Architecture" by Fowler |
@iluwatar I can help work on this pattern let me know if that’s okay with you. |
Nice, please go ahead @TwentyVentti |
Updated task description |
@iluwatar Can you assign me with this task, please? |
Description
The Active Record design pattern is a common architectural pattern used to manage database records. It simplifies data access by encapsulating the database logic within a model class. Each instance of the model corresponds to a row in the database, and the model class includes methods for CRUD (Create, Read, Update, Delete) operations.
Main Elements of Active Record Pattern:
References
Acceptance Criteria
The text was updated successfully, but these errors were encountered: