Re: Case sensitivity

Поиск
Список
Период
Сортировка
От Ludek Finstrle
Тема Re: Case sensitivity
Дата
Msg-id 20010511155725.Y11432@anxur.fi.muni.cz
обсуждение исходный текст
Ответ на Case sensitivity  ("Robert Hurst" <r_hurst@butler.org>)
Список pgsql-odbc
> A suggestion for a feature to add to your already wonderful ODBC capability.
> Could you add a boolean option that enables/disables case sensitivity with
> ODBC calls?  Consider this example, a Delphi client sends:
>
>     select * from logins where "Logins"."Login"='rhurst'
>
> I know it looks ridiculous.  This currently has the ill effect of forcing
> pgsql to look for the table 'logins' (case sensitive) when only 'Logins'
> exist!  Wouldn't it be nice if I could set an ignore-case flag for ODBC?

Hello,

  IMHO it isn't function for frontend (ODBC) but it's for backend
(PostgreSQL). And PostgreSQL support ILIKE which do what you want.
In other way you can do in Delphi something like that:

insert into logins .... VALUES (...,UPPER(login),...)
and then
select * from logins where "Logins"."Login"=UPPER('rhurst')

(I'm not sure about UPPER and now I can't get help fo postgres)

Regards

Luf

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

Предыдущее
От: Matthew Dormer
Дата:
Сообщение: Re: RE: Writing Large Objects to Postgresql via ODBC using VB
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [GENERAL] Help: Change the SQL query length