Hello I am writing an application, there are various forms and their corresponding datamodules. I wrote in a way that they are using each other by mentioning in uses class(one in implementation and another in interface to avoid cross reference) Is this approach is wrong? why or why not i should use in this way? Thanks
feedback
|
|
I have to agree with Ldsandon, IMHO it's way better to have more than one datamodule in your project. If you look at it as a Model - View - Controller thingie, your DB is the model, your forms would be the Views and your datamodules would be the controllers. Personally I always have AT LEAST 2 datamodules in my project. One datamodule is used to share Actions, ImageLists, DBConnection, ... and other stuff throughout the project. Most of the time this is my main datamodule. From there on I create a new datamodule for each 'Entity' in my application. For example If my application needs to proces or display orders, cursomters and products, then I will have a Datamodule for each and everyone of those. This way I can clearly separate functionality and easily reuse bits and pieces without having to pull in everything. If I need something related to Customers, I simple use the Customers Datamodule and just that. Regards, Stefaan | ||||
|
feedback
|
|
It is ok, especially if you're going to create more than one instance of the same form each using a different instance of the related datamodule. Just be aware of a little issue in the VCL design: if you create two instances of the same form and their datamodules, both forms will point to the same datamodule (due the way the VLC resolves links) unless you use a little trick when creating the datamodule instance:
| |||
|
feedback
|
|
Beyond the looking glass. I always use Forms instead of DataModules. I know it's not common ground, please read before downvoting. I always use Forms instead of DataModules. I call them DataMovules. I use one such DataMovule per each group of tables logically related. I use Forms instead of DataModules because both DataModules and Forms are component containers and both can effectively be used as containers for data related components. During development:
After development:
And no, I have not experienced any noticeable penalty in application size or performance. I don't try to break the MVC paradigm. I try to adhere to it instead. I don't mix the Forms that constitute my View with the DataMovules that constitute my Controllers. I don't consider them part of my View. They will never be used as the User Interface of my application. DataMovules just happen to be Forms. They are just convenient engineering artifacts. | |||||||||||||
feedback
|
|
A data module just for your table objects, if you only have a db few tables, would be a good one to be the first one. And a data module just for your actions is another. A data module just for image lists, is another good third data module. This data module only contains image lists, and then your forms that need access to image lists can use them all from this shared location. If you have 200 table objects, maybe more than one data module just for db tables. Imagine an application that has 20 tables to do with invoicing, and another 20 tables to do with HR. I would think an InvoicingDataModule, and HRDataModule would be nice to be separate if the tables inside them, and the code that works against them, doesn't need to know anything about each other, or even when one module has a "uses" dependency in one direction, but that relationship is not circular. Even then, finer grained data module modularity can be beneficial. | |||
|
feedback
|