that doesnt help any for me, does that make the insert work for you? ----- Original Message ----- From: "Lawrence Lustig" <[EMAIL PROTECTED]> To: "RBASE-L Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 07, 2003 5:41 AM Subject: [RBASE-L] - Re: SQL problem
> > insert into AcctPriv (UserAppno,approval,Clause) > > values > > > 1245,'N',',''1'',''2'',''3'',''4'',''5'',''6'',''7'',''8'',''9'')' > > > > im trying to insert this text into that table: > > ,'1','2','3','4','5','6','7','8','9') > > That's an odd bit of text to want to insert, but I > believe you are only missing the required parens > around the value list: > > insert into AcctPriv (UserAppno,approval,Clause) + > values (1245, 'N', + > ',''1'',''2'',''3'',''4'',''5'',''6'',''7'',''8'',''9'')' > + > ) > -- > Larry > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > >

