Re: What's wrong in this pltcl function ? - Mailing list pgsql-interfaces

From Constantin Teodorescu
Subject Re: What's wrong in this pltcl function ?
Date
Msg-id 3DAAD9C5.3000700@flex.ro
Whole thread Raw
In response to What's wrong in this pltcl function ?  (Constantin Teodorescu <teo@flex.ro>)
List pgsql-interfaces
Tom Lane wrote:

>Constantin Teodorescu <teo@flex.ro> writes:
>  
>
>>I have replaced:
>>... where id=\'\\$1\'
>>      with
>>... where id=\\$1
>>    
>>
>
>  
>
>>and the error is now:
>>ERROR:  Unable to identify an operator '=$' for types 'character 
>>varying' and 'integer'
>>    
>>
>
>Wup, you needed a space:
>
> ... where id = \\$1
>
>BTW, if id is varchar it would be better to define the function as
>accepting varchar not bpchar, no?
>  
>

Yes, I changed it as varchar the function parameter and the query parameter!
Now it works even with 2 backslashes like this:

... from conturi where id = \\$1" [list varchar]

teo




pgsql-interfaces by date:

Previous
From: Tom Lane
Date:
Subject: Re: What's wrong in this pltcl function ?
Next
From: Constantin Teodorescu
Date:
Subject: GD global data array capabilities in pltcl