[HACKERS] Transaction Aborted

2005-02-20 Thread Edwin S. Ramirez
Hello, This may sound familiar since there was a discussion before... I created an importing tool which allows users to load data into their tables using a graphical interface. The import operations occur within a transaction so that the user gets a chance to change their mind. After the

Re: [HACKERS] Transaction Aborted

2005-02-20 Thread Jeff Davis
I think that the feature you're looking for is a SAVEPOINT. After the import, create a savepoint, and then if the user makes a typo revert to that savepoint. Regards, Jeff Davis On Sun, 2005-02-20 at 22:05 -0500, Edwin S. Ramirez wrote: Hello, This may sound familiar since there