Database application using MVC paradigm
Posted
by Andrei K.
on Stack Overflow
See other posts from Stack Overflow
or by Andrei K.
Published on 2010-04-11T08:12:33Z
Indexed on
2010/04/11
8:23 UTC
Read the original article
Hit count: 254
In classic Delphi database application we have a form, a set of data-aware visual controls connected to TDataSets via TDataSources. If one wants to design database application using MVC model, where to place TDataSet components? Should they stay on form and therefore be a part of View? Or should they be encapsulated inside some Model object? If the latter how they could be bound to visual components?
© Stack Overflow or respective owner