Re: problems with single quotes..

Поиск
Список
Период
Сортировка
От Horst Herb
Тема Re: problems with single quotes..
Дата
Msg-id 20011202073819.28521.qmail@gnumed.dhs.org
обсуждение исходный текст
Ответ на problems with single quotes..  ("Megalex" <megalex@klanomega.com>)
Список pgsql-sql
On Friday 05 January 2001 05:57, Megalex wrote:

> everytime i try to run an insert and my text contains '\'
> it fails..

> Insert Into table(userID,FirstName,LastName) values(1,'''\''','test')
> and i get this message...

> how can i fix this??

by escaping the '\'
try
Insert Into table(userID,FirstName,LastName) values(1,'\\','test')
ant it will work

CHeers,
HOrst


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

Предыдущее
От: "Megalex"
Дата:
Сообщение: problems with single quotes..
Следующее
От: "Megalex"
Дата:
Сообщение: Re: problems with single quotes..