in reply to PostgreSQL UPDATE

Do you have AutoCommit set to 0? If so, you must explicitly call commit to save your writes to the database before you disconnect.

The setting for AutoCommit would be in your DBI connect call.

Replies are listed 'Best First'.
Re: Re: PostgreSQL UPDATE
by nlafferty (Scribe) on Jul 18, 2001 at 23:00 UTC
    What would that look like?