Ben veritabanına erişim için 2 sınıfları var:
MovieDAO - Sadece ifadeler "seçeneğini" kullanarak erişim veritabanı; amaç web tarayıcısında görüntülemek için veri almak içindir.
ve
MovieExtendedDAO (extends MovieDAO) - which is more complete veallows for creating/updating/deleting a movie in addition to the inherited functionality. This class is intended to be used only in the site's administrative area.
Ben bu gibi ayırmak için overkill olduğunu söylendi.
Is this is a normal way to do things or part of a design pattern? Or is there no real benefit to doing this? My main intention was to simplify things for the public side: a kind of optimization for how much stuff needs to get loaded up vealso what kind of things can happen on the public (non-admin) side. Thank you for your comments!