Description of datamodule in dll? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T05:59:40Zhttp://stackoverflow.com/feeds/question/1144570http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1144570/description-of-datamodule-in-dll1Description of datamodule in dll?Tobassum Munir2009-07-17T17:08:45Z2009-07-18T21:15:58Z
<p>I created a costumer's database program. I have a problem in which I create a data module in a DLL and I compile it but then get some error below.</p>
<p>My concept is </p>
<blockquote>
<p>The data module created in DLL and I insert ADO components in the data module.
This data module is used in another form. I created a db grid in the form but it doesn't
show the records in db grid. I compile it but get an error below.</p>
</blockquote>
<p>I very thanks to solve my problem...
My English is not good but you try to understand........</p>
http://stackoverflow.com/questions/1144570/description-of-datamodule-in-dll/1144654#11446540Answer by Bruce McGee for Description of datamodule in dll?Bruce McGee2009-07-17T17:26:13Z2009-07-17T17:26:13Z<p>As far as I know, there isn't any way for a GUI app to use dataset components in a DLL directly.</p>
<p>You might have better lock using packages, which are more Delphi object friendly. I haven't tried this, so I can't give much advice.</p>
<p>Or you could have your DLL pass back the dataset, which you put into a TClientDataset in you GUI application.</p>
http://stackoverflow.com/questions/1144570/description-of-datamodule-in-dll/1147286#11472860Answer by Francis Lee for Description of datamodule in dll?Francis Lee2009-07-18T11:14:53Z2009-07-18T11:14:53Z<p>The main difference between dll usage and packages is the shared memory model.</p>
<p>You can simply put a dbconnection in a package. a datamodule in another one. and the best of all is you can load & unload them at your convenience. Then you have access to this elements by unit usage.</p>
http://stackoverflow.com/questions/1144570/description-of-datamodule-in-dll/1148585#11485851Answer by Olaf for Description of datamodule in dll?Olaf2009-07-18T21:15:58Z2009-07-18T21:15:58Z<p>TDataModule is just like a form but it's purpose is to be sort of a container form and is invisible to the end user. Although you can create a TDataModule in a DLL, it is not meant to be like that. TDataModules are there for the sake of simplifying your interaction with the whole app. Not to complicate it!!</p>
<p><strong>IMHO, Don't create DataModules in a dll.</strong></p>
<p>From your description, I think that you want a central datastore-like-module that is separate from the app that interacts with the user. May be there are more than one user. If that is the case <strong>try client-server approach</strong>.</p>