Re: psqlODBC text length with no records

Поиск
Список
Период
Сортировка
От Barry Bell
Тема Re: psqlODBC text length with no records
Дата
Msg-id b3d4a6df087c4f238679fd06bfc7493c@BY2PR08MB281.namprd08.prod.outlook.com
обсуждение исходный текст
Ответ на Re: psqlODBC text length with no records  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-odbc
Use the cast work fine but we are using the initcap function in a lot of places
And do not want to cast to every place.
(Plus we use a lot of other functions that may have the same issue).

You said the initcap function return "text",
Is this a "short" text like a varchar
Or a long text like a clob,memo etc?

Barry Bell
Senior Developer/Analyst
Logistics
Harte Hanks
1525 NW 3rd ST
Deerfield Beach FL, 33442
954-429-3771 Ext 267 office
954-281-1464 fax

hartehanks.com / linkedin / twitter / facebook

-----Original Message-----
From: Adrian Klaver [mailto:adrian.klaver@aklaver.com]
Sent: Wednesday, May 14, 2014 8:58 AM
To: Barry Bell; Hiroshi Saito; Michael Paquier; Hiroshi Inoue
Cc: Heikki Linnakangas; Anna Gershnik; pgsql-odbc@postgresql.org
Subject: Re: [ODBC] psqlODBC text length with no records

On 05/14/2014 05:51 AM, Barry Bell wrote:
> Tried every setting for unknown size
> Abd every settubg fir date tyoe options.
>   and it always comes back as SQllongvarchar (Memo, CLOB).
>
> The "    Text as LongVarChar: PostgreSQL TEXT type is mapped to SQLLongVarchar, otherwise SQLVarchar." Is not working
whenno records are returned 
>
> It will work if the initcap function is not used.
>
> Try it yourself with this sql statement:
>
> SELECT initcap('ABCDEF') vv FROM dual WHERE 1=0
>
> Will return the a sqlongvarchar(Memo,CLOB)

I do not have an ODBC test set up available right now.

FYI initcap returns TEXT:

http://www.postgresql.org/docs/9.3/interactive/functions-string.html

initcap(string)     text


So what happens if you cast to varchar?:

SELECT initcap('ABCDEF')::varchar vv FROM dual WHERE 1=0

>
>
>


--
Adrian Klaver
adrian.klaver@aklaver.com


В списке pgsql-odbc по дате отправления:

Предыдущее
От: Barry Bell
Дата:
Сообщение: Re: psqlODBC text length with no records
Следующее
От: Barry Bell
Дата:
Сообщение: Re: psqlODBC text length with no records