| From: | Neil Conway <neilc(at)samurai(dot)com> |
|---|---|
| To: | Dennis Gearon <gearond(at)cvc(dot)net> |
| Cc: | PostgreSQL General <pgsql-general(at)postgresql(dot)org> |
| Subject: | Re: crypt |
| Date: | 2003-01-29 18:25:35 |
| Message-ID: | 1043864539.517.21.camel@tokyo |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On Wed, 2003-01-29 at 02:02, Dennis Gearon wrote:
> I want to encrypt certain data fields in some tables in order to keep a
> customer happy about security, ( and since this is on a hosted site, I
> can't control security anyway )
... and your question is what, exactly?
For crypto options, see
http://www.ca.postgresql.org/docs/faq-english.html#4.28 -- I'd think
pgcrypto is probably the best bet for you.
> Can pl/pgsql functions be pre compiled except for the arguments?
When a PL/PgSQL function is defined, some minimal parsing is done. The
first time in a given session that it is called, it is planned (once),
and the plan is used for future executions of the function (within that
session).
Cheers,
Neil
--
Neil Conway <neilc(at)samurai(dot)com> || PGP Key ID: DB3C29FC
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Neil Conway | 2003-01-29 18:25:49 | Re: Query gone wild |
| Previous Message | Neil Conway | 2003-01-29 18:22:06 | Re: psql command line question.. |