Re: Transactions, PostgreSQL and MS Access front end.

Поиск
Список
Период
Сортировка
От arthurjr07@gmail.com
Тема Re: Transactions, PostgreSQL and MS Access front end.
Дата
Msg-id 1145868513.284747.222700@e56g2000cwe.googlegroups.com
обсуждение исходный текст
Ответ на Transactions, PostgreSQL and MS Access front end.  ("Karen Hill" <karen_hill22@yahoo.com>)
Список 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 по дате отправления:

Предыдущее
От: Ari Kahn
Дата:
Сообщение: Re: pg_dumpall: does not exist database
Следующее
От: "Nik"
Дата:
Сообщение: Partitioning rule not behaving as expected