Ask a Question related to ASP.NET General, Design and Development.
-
Ron Vecchi #1
DataRow[] and Select(filter with a like clause) question
I am using the Select method on a DataTable to return a DataRow[]
filter = (width LIKE '%width="[1-9][0-9]%')
I am getting an exception saying my filter is invalid
I narrowed it down to the part that reads [1-9][0-9]
if I eliminate this part it works.
Is there a way to accomplish what I'm tring to do?
Thanks,
Ron Vecchi
Ron Vecchi Guest
-
Using 'IN' clause with mutli-select listbox
Hi All, Common sense tells me I'm missing something, but I need help here! I have a dynamically populated listbox that I'd like to use to query... -
IO::Filter::gzip question
Can someone tell me how to extract the uncompressed data from the returned value using the script below? I try and print the $fio variable, but I get... -
DataRow, WebService question
I am writing a WindowsForms based application that uses WebServices to add records to a SQL Server database, and later query those, and other... -
Using Select method and LIKE expression to return DataRow[]
I am using the Select method on a DataTable to return a DataRow filter = (width LIKE '%width=\"%') I am getting an exception saying my filter is... -
Help a newbie! How do I SELECT using a string as a WHERE clause?
Hi, I'm having a problem. I've found that running a recordset with the query: SELECT * FROM user; works fine, but as soon as I add a... -
Ron Vecchi #2
Re: DataRow[] and Select(filter with a like clause) question
Heres my filter again, I gave you the Sql version without the escaped ".
Just to clarify
filter = width LIKE '%width=\"[1-9][0-9]%'
"Ron Vecchi" <vencenzo@comcast.net> wrote in message
news:ei%23CC%23DVDHA.1832@TK2MSFTNGP09.phx.gbl...> I am using the Select method on a DataTable to return a DataRow[]
> filter = (width LIKE '%width="[1-9][0-9]%')
>
> I am getting an exception saying my filter is invalid
> I narrowed it down to the part that reads [1-9][0-9]
>
> if I eliminate this part it works.
> Is there a way to accomplish what I'm tring to do?
>
>
> Thanks,
>
> Ron Vecchi
>
>
Ron Vecchi Guest
-
Ron Vecchi #3
DataRow[] and Select(filter with a like clause) question
I am using the Select method on a DataTable to return a DataRow[]
filter = (width LIKE '%width="[1-9][0-9]%')
I am getting an exception saying my filter is invalid
I narrowed it down to the part that reads [1-9][0-9]
if I eliminate this part it works.
Is there a way to accomplish what I'm tring to do?
Thanks,
Ron Vecchi
Ron Vecchi Guest



Reply With Quote

