RE: Re: [Zope-dev] ZSQL using LIKE operator

2001-02-09 Thread Jon Franz
ilto:[EMAIL PROTECTED]] > Sent: Friday, February 09, 2001 10:33 AM > To: 'Jon Franz' > Cc: '[EMAIL PROTECTED]' > Subject: RE: Re: [Zope-dev] ZSQL using LIKE operator > > > Not taken as being harsh from where I stand! The more we > know...the better! >

RE: Re: [Zope-dev] ZSQL using LIKE operator

2001-02-09 Thread Schmidt, Allen J.
From: Schmidt, Allen J. [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 09, 2001 7:01 AM > To: 'Jon Franz'; '[EMAIL PROTECTED]' > Subject: Bad: Re: [Zope-dev] ZSQL using LIKE operator > > > Got it. Making the change now. Thanks for keeping an eye on > th

RE: Re: [Zope-dev] ZSQL using LIKE operator

2001-02-09 Thread Jon Franz
riday, February 09, 2001 7:01 AM > To: 'Jon Franz'; '[EMAIL PROTECTED]' > Subject: Bad: Re: [Zope-dev] ZSQL using LIKE operator > > > Got it. Making the change now. Thanks for keeping an eye on > this thread. > What about the sqltest suggestion on pos

Bad: Re: [Zope-dev] ZSQL using LIKE operator

2001-02-09 Thread Schmidt, Allen J.
, February 08, 2001 3:54 PM To: '[EMAIL PROTECTED]' Subject: Bad: Re: [Zope-dev] ZSQL using LIKE operator No, this is bad!! Do NOT do this - it will allow Bad characters in your SQL query that could allow mischievous people to tamper with your Db and possibly hack your box (depending upon what

Re: [Zope-dev] ZSQL using LIKE operator

2001-02-08 Thread Dieter Maurer
Schmidt, Allen J. writes: > how to resolve a query which I need to read: > > SELECT * FROM table WHERE keywords LIKE '%keywords_variable%' > > has 'op=like' and when set to 'type=string' produces the LIKE > operation in the query, with single quotes, but I cannot get it to 'wrap' >

Bad: Re: [Zope-dev] ZSQL using LIKE operator

2001-02-08 Thread Jon Franz
this Can be a big security hazard... ~Jon Franz/'Coventry': http://www.zope.org/Members/Coventry >Message: 9 >Date: Thu, 08 Feb 2001 07:32:48 -0500 >Subject: Re: [Zope-dev] ZSQL using LIKE operator >From: Jens Vagelpohl <[EMAIL PROTECTED]> >To: "Schmid

RE: [Zope-dev] ZSQL using LIKE operator

2001-02-08 Thread Schmidt, Allen J.
1 AM To: Jens Vagelpohl Cc: Schmidt, Allen J.; [EMAIL PROTECTED] Subject: Re: [Zope-dev] ZSQL using LIKE operator Jens Vagelpohl wrote: > > just write it out like: > > SELECT * FROM table WHERE keywords LIKE '%%' > > jens > > on 2/8/01 7:17, Schmidt, All

Re: [Zope-dev] ZSQL using LIKE operator

2001-02-08 Thread Casey Duncan
Jens Vagelpohl wrote: > > just write it out like: > > SELECT * FROM table WHERE keywords LIKE '%%' > > jens > > on 2/8/01 7:17, Schmidt, Allen J. at [EMAIL PROTECTED] wrote: > > > I have been through the docs, searched a variety of locations, and cannot > > find anything on how to resolve a q

Re: [Zope-dev] ZSQL using LIKE operator

2001-02-08 Thread Jens Vagelpohl
just write it out like: SELECT * FROM table WHERE keywords LIKE '%%' jens on 2/8/01 7:17, Schmidt, Allen J. at [EMAIL PROTECTED] wrote: > I have been through the docs, searched a variety of locations, and cannot > find anything on how to resolve a query which I need to read: > > SELECT * FRO