Re: Newbie questions about Delphi...
- From: Kenneth Porter <shiva.blacklist@xxxxxxxxxxxxxxx>
- Date: Tue, 14 Oct 2008 02:30:41 +0000 (UTC)
Kevinp <kevinp@xxxxxxxxxx> wrote in
news:e3r7f41nirctchkdkok6vec7pd7b4c7a4c@xxxxxxx:
I'll probably dabble a little with Delphi when I have the time. When I
played with it before years ago, it was to create an auto-run program
for a CD. The Delphi executable would run straight off the CD, where
VB had to have the run-time files installed.
In other words, the Delphi program was statically linked.
Dynamic linking is generally a feature, in that it allows multiple programs
to share the same library code, both on disk and in memory. But it also can
be a burden in packaging, so one often chooses static linking to reduce the
number of files deployed.
In today's environment of massive memory and disks, saving space is no
longer so important. But dynamic linking also offers the potential
advantage of fixing the same library bug in many executables
simultaneously. I don't see this done much in the Windows world except in
the issuing of OS patches, but it's very common in the Linux world to
release 3rd party library fixes to address a system-wide issue. Then again,
in the Linux world, *everything* is 3rd party.
.
- Follow-Ups:
- Re: Newbie questions about Delphi...
- From: Rob Kennedy
- Re: Newbie questions about Delphi...
- References:
- Newbie questions about Delphi...
- From: Kevinp
- Re: Newbie questions about Delphi...
- From: Kevinp
- Newbie questions about Delphi...
- Prev by Date: Re: Newbie questions about Delphi...
- Next by Date: Re: Newbie questions about Delphi...
- Previous by thread: Re: Newbie questions about Delphi...
- Next by thread: Re: Newbie questions about Delphi...
- Index(es):
Relevant Pages
|