Open iluwatar opened 9 years ago
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
Sorry I accidentally created a pull request to this repo instead of my fork. I will send an intentional pull request tomorrow.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically marked as stale because it has not had recent activity. The issue will be unassigned if no further activity occurs. Thank you for your contributions.
I'll assign to you @sergejsvisockis
Hi @iluwatar ,
Thank you for assigning! However, I have unassigned myself from the issue. Taking into consideration my limited availability within the open source community at the moment I would like to take more deliberate steps in these regards and implement this one at the nearest convenience.
If there are no time limitations then feel free to assign it back to me in any case I keep this issue in the loop on my tasks.
Thank you!
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