Re: Pgscript : error creating a user with a variable as the password - Mailing list pgadmin-support

From Guillaume Lelarge
Subject Re: Pgscript : error creating a user with a variable as the password
Date
Msg-id 4F659F8B.7070502@lelarge.info
Whole thread Raw
In response to Pgscript : error creating a user with a variable as the password  (plop plop <mr_weetos@hotmail.com>)
Responses Re: Pgscript : error creating a user with a variable as the password  (plop plop <mr_weetos@hotmail.com>)
List pgadmin-support
Le 16/03/2012 14:23, plop plop a écrit :
> Hi all,
>
> This is a problem about creating a user with a password thanks to a
> pgscript (pgadmin 1.14.1). I have searched a while around the internent,
> but I have found no solution so far.
>
> The following script does not work ("error near « password»". Pgadmin is
> in French, so i do not know how the warning exactly looks like in English) :
>
> declare @USER, @PASS;
> set @USER='user';
> set @PASS='password';
>
> CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
> PASSWORD @PASS;
>
>
> Whereas this one does :
>
> declare @USER;
> set @USER='user';
>
> CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
> PASSWORD 'password';
>
>
> What am I doing wrong with the @PASS variable ?
>

You need to add quotes around it, this way:

CREATE ROLE @USER LOGIN NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE
PASSWORD '@PASS';


--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com


pgadmin-support by date:

Previous
From: Guillaume Lelarge
Date:
Subject: Re: Server status hanging on OS X
Next
From: Guillaume Lelarge
Date:
Subject: Re: code completion feature question