Re: cursor "x" does not exist

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Bob Jones <r(dot)a(dot)n(dot)d(dot)o(dot)m(dot)d(dot)e(dot)v(dot)4+postgres(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: cursor "x" does not exist
Date: 2018-04-14 16:40:11
Message-ID: d321a3c8-7f31-fb1d-6954-35b6d1d1cd08@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 04/14/2018 09:36 AM, Bob Jones wrote:
> On 14 April 2018 at 16:38, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> Bob Jones <r(dot)a(dot)n(dot)d(dot)o(dot)m(dot)d(dot)e(dot)v(dot)4+postgres(at)gmail(dot)com> writes:
>>> My apologies if I'm being incredibly stupid here, but I've reviewed
>>> what the docs have to say about naming portals and I still can't see
>>> where I'm going wrong here ?
>>
>> I think you're forgetting to double-quote an upper case identifier.
>>
>>> FETCH ALL IN B;
>>> ERROR: cursor "b" does not exist
>>
>> The cursor is named "B" not "b", but B without quotes folds to the latter.
>>
>> regards, tom lane
>
>
> Thank you tom for showing me the error in my ways.
>
> Now where's that dunce cap gone ? Maybe I don't deserve to use
> anything better than MySQL. ;-)

Or read the below and be illuminated:)

https://www.postgresql.org/docs/10/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS

>
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Mike Martin 2018-04-14 20:59:26 Regex on field value
Previous Message Bob Jones 2018-04-14 16:36:41 Re: cursor "x" does not exist