Re: How and when are encoding DLLs used on Windows?

From: Craig Ringer <ringerc(at)ringerc(dot)id(dot)au>
To: David Schnur <dnschnur(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: How and when are encoding DLLs used on Windows?
Date: 2011-11-17 02:28:37
Message-ID: 4EC47155.3090306@ringerc.id.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On 11/17/2011 12:04 AM, David Schnur wrote:
> I bundle Postgres (8.3.15) with another product as a back-end database.
> On Windows, the default build includes a bunch of what appear to be
> codec libraries, with names like,
> utf8_and_cyrillic.dll, ascii_and_mic.dll, etc. But using Microsoft's
> dependency walker tool, I see no references to any of these in
> libpq.dll, psql, postgres or initdb.

They're loaded by LoadLibrary calls. You'll see that the names do appear
in the server executable as strings.

The PL libraries and contrib libraries are similar, in that you won't
see direct dependencies but they'll still get used via LoadLibrary if
your database calls for them.

--
Craig Ringer

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message hubert depesz lubaczewski 2011-11-17 12:15:39 Re: How could I find the last modified procedure in the database?
Previous Message Tom Lane 2011-11-17 00:02:11 Re: How could I find the last modified procedure in the database?