Re: error when using SELECT

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: error when using SELECT
Дата
Msg-id 17347.1122402314@sss.pgh.pa.us
обсуждение исходный текст
Ответ на error when using SELECT  (Andrew Stewart <astew@wam.umd.edu>)
Список pgsql-general
Andrew Stewart <astew@wam.umd.edu> writes:
> I myself am still very new to PostgreSQL, so I'm having trouble telling
> if there is anything wrong with the postgres transaction that is being
> attempted by the bioperl-db maketest.  The verbose error output is as
> follows...

> preparing SELECT statement: SELECT SUBSTRING(seq FROM ? FOR ?) FROM
> biosequence WHERE bioentry_id = ?
> ok 30
> ok 31
> DBD::Pg::st execute failed: ERROR:  invalid escape string
> HINT:  Escape string must be empty or one character.

According to the docs, that syntax is

   The substring function with three parameters, substring(string from
   pattern for escape-character), provides extraction of a substring that
   matches an SQL regular expression pattern.

It would appear that you're supplying an empty string for the second ?
which is a no-no for this particular function.

My guess is that you are trying to port code from another database that
has a different interpretation of this syntax.

            regards, tom lane

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

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: transaction timeout
Следующее
От: Dr NoName
Дата:
Сообщение: Re: transaction timeout