Re: Insert UUID GEN 4 Value

From: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
To: tango ward <tangoward15(at)gmail(dot)com>
Cc: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>, "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Insert UUID GEN 4 Value
Date: 2018-05-31 15:25:48
Message-ID: CAKFQuwYf=4-9HEt8uteMMCVLuZ59xkCpWwGQU480Q9FzgtRrQw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, May 30, 2018 at 9:32 PM, tango ward <tangoward15(at)gmail(dot)com> wrote:

>
> On Thu, May 31, 2018 at 12:18 PM, David G. Johnston <
> david(dot)g(dot)johnston(at)gmail(dot)com> wrote:
>
>> On Wednesday, May 30, 2018, tango ward <tangoward15(at)gmail(dot)com> wrote:
>>>
>>> Okay I will try it.
>>>>
>>>
>>> When I tried it, I am getting an error:
>>> ​​
>>> Invalid input syntax for UUID: uuid_generate_v4(),
>>>
>>
>> Avoid references to "it" and just show the code you tried to run.
>>
>> David J.
>>
>
>
> I'm testing this code:
>
> curr_pgsql.execute('''CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; ''')
> curr_pgsql.execute('''
> INSERT INTO enrollmentinfo (
> created,
> modified,
> secure_id,
> relationship,
> tuition_bill,
> cashier_name,
>
> cashier_phone_number
> )
> VALUES (current_timestamp, current_timestamp,
> uuid_generate_v4(), '', '', '',)
> ''')
>

​Executing this query is psql does not give the error​: ​Invalid input
syntax for UUID: uuid_generate_v4(),

This query is almost correct except you have a trailing comma in your
VALUES statement that is going to provoke: syntax error near "," (i.e., you
haven't provided a value for cashier_phone_number)

The query, which you have not yet shown, that provoked the "Invalid input
syntax for UUID: uuid_generate_v4()" must have had the function call
specified within single quotes in order for the server to think it was a
literal value instead of an expression to be evaluated.

David J.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message nageswara Bandla 2018-05-31 16:24:18 Re: Pgagent is not reading pgpass file either in Windows or Linux.
Previous Message Steve Crawford 2018-05-31 15:25:32 Re: License Question