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