Subject | Re: Escaping characters ?! |
---|---|
Author | kaczy27 |
Post date | 2004-12-09T13:54:31Z |
--- In firebird-support@yahoogroups.com, "lokkihybridi"
<lokkihybridi@y...> wrote:
insert into table (col1,col2) values('Root''s test
string', 'string2');
<lokkihybridi@y...> wrote:
>writing
>
> Hello,
>
> We selected Firebird SQL for our embedded system and now I'm
> Java code for our application.try
>
> I tried to look everywhere in the net for information how to escape
> characters like ' from strings, but I didn't find anything..
>
> So how to do this in firebird
>
> insert into table (col1,col2) values('Root's test string', 'string
> 2');
insert into table (col1,col2) values('Root''s test
string', 'string2');
>CUIN Kaczy
> table is described to have two colums both varchar(100)
>
> Thak for your help in advance
>
> -Toni