Re: Transactions, PostgreSQL and MS Access front end. - Mailing list pgsql-general

From arthurjr07@gmail.com
Subject Re: Transactions, PostgreSQL and MS Access front end.
Date
Msg-id 1145868513.284747.222700@e56g2000cwe.googlegroups.com
Whole thread Raw
In response to Transactions, PostgreSQL and MS Access front end.  ("Karen Hill" <karen_hill22@yahoo.com>)
List pgsql-general
Try to use ADO

Dim con as ADODB.Connection
set con = new ADODB.Connection
con.Open "DRIVER={PostgreSQL};
                SERVER=ipaddress; port=5432;
                DATABASE=dbname;
                UID=username;PWD=password;"

con.BeginTrans
con.Execute "UPDATE accounts SET balance = balance + 100.00
                     WHERE acctnum = 12345"
con.Execute "UPDATE accounts SET balance = balance - 100.00
                     WHERE acctnum = 7534"
Con.CommitTrans


pgsql-general by date:

Previous
From: Ari Kahn
Date:
Subject: Re: pg_dumpall: does not exist database
Next
From: "Nik"
Date:
Subject: Partitioning rule not behaving as expected