| From: | Miguel Gonzalez <jffernandez(at)usuarios(dot)retecal(dot)es> |
|---|---|
| To: | pgsql-odbc(at)postgresql(dot)org |
| Subject: | Creating users |
| Date: | 2001-08-11 16:10:02 |
| Message-ID: | 001b01c12280$140f7480$c83616d4@usuarios.retecal.es |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-odbc |
dear all,
I am developing a client application with C++ Builder 3 to access a
Database designed with PostgreSQL 7.0.4 using a BDE alias through the ODBC
driver.
I would like to have a form where I can add users to my users table of my
database and also create the corresponding entry to the postgres pg_user
table.
What I have tried through the Database Explorer is the following
transaction (I use begin and commit, otherwise the parser complains):
BEGIN;
CREATE USER user1 WITH PASSWORD 'passwd_user1' IN GROUP users_invui;
COMMIT;
I check in the pg_user table but no entry is added. I execute without the
begin and the commit comands the same query in the backend (psql) and it
works perfectly. What am I doing wrong?
Many thanks in advance and sorry for my English
Miguel
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Dave Page | 2001-08-11 21:11:43 | RE: Creating users |
| Previous Message | Tom Lane | 2001-08-10 18:02:22 | Re: KSQO parameter |