473,473 Members | 1,488 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

String Parsing Query

RH
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp;
Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.

Thanks in advance

Jul 19 '05 #1
10 1844
I suggest you take this one step at a time.
Look at Split() to break it apart
Look at a FOR loop to append the values.
OR
Just take the command delimited value and append it into the SQL directly
with a
"select.....where.....IN (" & yourValues & ")......"

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp;
Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.

Thanks in advance

Jul 19 '05 #2
The really dirty method would be;

SomeString = "x, y, z"

Do While Not Instr(1, SomeString, ",", vbTextCompare)
MyString = StripIt(SomeString)
Response.Write MyString & "<br>"
Loop

Function StripIt(TheStirng)
Dim strTemp
strTemp = Split(TheString, ",")
StripIt = path(UBound(strTemp))
End Function

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp;
Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.

Thanks in advance

Jul 19 '05 #3
Thanks Curt - I've tried the second option, and while it works if you only
have one item selected to search for, it doesn't if you have 2.

Each field in the database only has one value, so one would be (Spa |
Services) 99 | hair, 99 | pools, 100 | hair, 100| Manicures etc.

If I select pools from the list, I get spa 99 & spa 100, If I select hair &
Pools, I should get spa 99 & spa 100

So, I've gone the other route.but what I can't figure out is how to make an
OR statement out of the array I get when I do Split.
(I've never done this before so I'm kindof confused with the syntax)

From what I can dig up information wise on this, I have to use a loop to
build an or statement that I can then pull into my query.

How do I do that??
Robyn


"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eC****************@TK2MSFTNGP11.phx.gbl...
I suggest you take this one step at a time.
Look at Split() to break it apart
Look at a FOR loop to append the values.
OR
Just take the command delimited value and append it into the SQL directly
with a
"select.....where.....IN (" & yourValues & ")......"

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp; Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.
Thanks in advance


Jul 19 '05 #4
I thought that the multi select came throug comman-delimited, but I may be
wrong. You may have to do some simple Replace() calls to format it right

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RosieO" <Ro****@mail.com> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
Thanks Curt - I've tried the second option, and while it works if you only
have one item selected to search for, it doesn't if you have 2.

Each field in the database only has one value, so one would be (Spa |
Services) 99 | hair, 99 | pools, 100 | hair, 100| Manicures etc.

If I select pools from the list, I get spa 99 & spa 100, If I select hair & Pools, I should get spa 99 & spa 100

So, I've gone the other route.but what I can't figure out is how to make an OR statement out of the array I get when I do Split.
(I've never done this before so I'm kindof confused with the syntax)

From what I can dig up information wise on this, I have to use a loop to
build an or statement that I can then pull into my query.

How do I do that??
Robyn


"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eC****************@TK2MSFTNGP11.phx.gbl...
I suggest you take this one step at a time.
Look at Split() to break it apart
Look at a FOR loop to append the values.
OR
Just take the command delimited value and append it into the SQL directly
with a
"select.....where.....IN (" & yourValues & ")......"

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION> <OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures, Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness

&amp; Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.
Thanks in advance



Jul 19 '05 #5
Yes it does - should it then evaluate each piece separately as in an OR
statement?
Because if I just select one value, it works fine; if I select 2 it returns
nothing.

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:Od**************@TK2MSFTNGP10.phx.gbl...
I thought that the multi select came throug comman-delimited, but I may be
wrong. You may have to do some simple Replace() calls to format it right

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RosieO" <Ro****@mail.com> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
Thanks Curt - I've tried the second option, and while it works if you only
have one item selected to search for, it doesn't if you have 2.

Each field in the database only has one value, so one would be (Spa |
Services) 99 | hair, 99 | pools, 100 | hair, 100| Manicures etc.

If I select pools from the list, I get spa 99 & spa 100, If I select
hair &
Pools, I should get spa 99 & spa 100

So, I've gone the other route.but what I can't figure out is how to make

an
OR statement out of the array I get when I do Split.
(I've never done this before so I'm kindof confused with the syntax)

From what I can dig up information wise on this, I have to use a loop to
build an or statement that I can then pull into my query.

How do I do that??
Robyn


"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eC****************@TK2MSFTNGP11.phx.gbl...
I suggest you take this one step at a time.
Look at Split() to break it apart
Look at a FOR loop to append the values.
OR
Just take the command delimited value and append it into the SQL

directly with a
"select.....where.....IN (" & yourValues & ")......"

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
> <SELECT name="txtServices" size="3" multiple>
> <OPTION value="Massage">Massage</OPTION>
> <OPTION value="Facials">Facials</OPTION>
> <OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body > Treatments</OPTION>
> <OPTION value="Medical Treatments">Medical Treatments</OPTION> > <OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures, > Manicures</OPTION>
> <OPTION value="Hair">Hair</OPTION>
> <OPTION value="Pools">Pools</OPTION>
> <OPTION value="Waxing">Waxing</OPTION>
> <OPTION value="Make-up">Make-up</OPTION>
> <OPTION value="Aromatherapy">Aromatherapy</OPTION>
> <OPTION value="Specialties">Specialties</OPTION>
> <OPTION value="Tinting">Tinting</OPTION>
> <OPTION value="Fitness & Nutritional Counselling">Fitness

&amp;
> Nutritional Counselling</OPTION>
> </SELECT></TD>
>
> Since this is a muliple select box the values are passed to the search > string comma delimited IE: facials, hair, pools etc
>
> Can anyone tell me how to parse this string and then build a select
> statement whereby I can search for Facials OR Hair OR pools
> I've been searching all over and can't find anything that does just

this.
>
> Thanks in advance
>
>
>



Jul 19 '05 #6
What if you just did.

SqlFieldName="Field1"
SomeString="x, y, z"
SomeString=SqlFieldName & " = '" & Replace(SomeString, ", ", "' OR " &
SqlFieldName & "='") & "'"

Which should produce

Field1='x' OR Field1='y' OR Field1='z'

"Steven Burn" <pv*@noyb.com> wrote in message
news:e$**************@TK2MSFTNGP12.phx.gbl...
The really dirty method would be;

SomeString = "x, y, z"

Do While Not Instr(1, SomeString, ",", vbTextCompare)
MyString = StripIt(SomeString)
Response.Write MyString & "<br>"
Loop

Function StripIt(TheStirng)
Dim strTemp
strTemp = Split(TheString, ",")
StripIt = path(UBound(strTemp))
End Function

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp; Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.
Thanks in advance


Jul 19 '05 #7
SELECT ..... FROM ..... WHERE ........... IN ('" & Replace(yourValues ,",","','") & "')......."

'from dlbjr

'Unambit from meager knowledge of inane others,engender uncharted sagacity.
Jul 19 '05 #8
Ok. I feel dirty. How about.....

SomeString="x, y, z"

Dim arrVals
arrVals=Split(SomeString, ",")

Dim i
Dim sSQL
sSQL="SELECT Field1, Field2 FROM tblX WHERE "
for i=0 to UBound(arrVals)
if i>0 then
sSQL=sSQL & " OR "
end if
sSQL=sSQL & "Field1='" & arrVals(i) & "' "
next

"Steven Burn" <pv*@noyb.com> wrote in message
news:e$**************@TK2MSFTNGP12.phx.gbl...
The really dirty method would be;

SomeString = "x, y, z"

Do While Not Instr(1, SomeString, ",", vbTextCompare)
MyString = StripIt(SomeString)
Response.Write MyString & "<br>"
Loop

Function StripIt(TheStirng)
Dim strTemp
strTemp = Split(TheString, ",")
StripIt = path(UBound(strTemp))
End Function

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION>
<OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures,
Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp; Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.
Thanks in advance


Jul 19 '05 #9
hehe, yep, that works too ;o)

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"TomB" <sh*****@hotmailXXX.com> wrote in message
news:O8*************@TK2MSFTNGP11.phx.gbl...
What if you just did.

SqlFieldName="Field1"
SomeString="x, y, z"
SomeString=SqlFieldName & " = '" & Replace(SomeString, ", ", "' OR " &
SqlFieldName & "='") & "'"

Which should produce

Field1='x' OR Field1='y' OR Field1='z'

"Steven Burn" <pv*@noyb.com> wrote in message
news:e$**************@TK2MSFTNGP12.phx.gbl...
The really dirty method would be;

SomeString = "x, y, z"

Do While Not Instr(1, SomeString, ",", vbTextCompare)
MyString = StripIt(SomeString)
Response.Write MyString & "<br>"
Loop

Function StripIt(TheStirng)
Dim strTemp
strTemp = Split(TheString, ",")
StripIt = path(UBound(strTemp))
End Function

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"RH" <rh@bloofrog.net> wrote in message
news:ut**************@TK2MSFTNGP09.phx.gbl...
<SELECT name="txtServices" size="3" multiple>
<OPTION value="Massage">Massage</OPTION>
<OPTION value="Facials">Facials</OPTION>
<OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry Body
Treatments</OPTION>
<OPTION value="Medical Treatments">Medical Treatments</OPTION> <OPTION value="Nails, Pedicures, Manicures">Nails, Pedicures, Manicures</OPTION>
<OPTION value="Hair">Hair</OPTION>
<OPTION value="Pools">Pools</OPTION>
<OPTION value="Waxing">Waxing</OPTION>
<OPTION value="Make-up">Make-up</OPTION>
<OPTION value="Aromatherapy">Aromatherapy</OPTION>
<OPTION value="Specialties">Specialties</OPTION>
<OPTION value="Tinting">Tinting</OPTION>
<OPTION value="Fitness & Nutritional Counselling">Fitness &amp; Nutritional Counselling</OPTION>
</SELECT></TD>

Since this is a muliple select box the values are passed to the search
string comma delimited IE: facials, hair, pools etc

Can anyone tell me how to parse this string and then build a select
statement whereby I can search for Facials OR Hair OR pools
I've been searching all over and can't find anything that does just this.
Thanks in advance



Jul 19 '05 #10
eureka!!!
I got it

If TServices<>"" then
strServices=replace(TServices, ", ", "','")
SqlString="SELECT display, category, name, addr1, addr2, city, provstate, country, postalzip, phone, fax, services FROM selectservices WHERE Services IN ('" & strServices & "') AND Display='"&tDisp&"' ORDER BY Name"

and works perfectly!!!!
Thanks so much!!

"RosieO" <Ro****@mail.com> wrote in message news:Og**************@tk2msftngp13.phx.gbl...
Yes it does - should it then evaluate each piece separately as in an OR
statement?
Because if I just select one value, it works fine; if I select 2 it returns
nothing.



"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:Od**************@TK2MSFTNGP10.phx.gbl...
I thought that the multi select came throug comman-delimited, but I may be
wrong. You may have to do some simple Replace() calls to format it right

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"RosieO" <Ro****@mail.com> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
Thanks Curt - I've tried the second option, and while it works if you only have one item selected to search for, it doesn't if you have 2.

Each field in the database only has one value, so one would be (Spa |
Services) 99 | hair, 99 | pools, 100 | hair, 100| Manicures etc.

If I select pools from the list, I get spa 99 & spa 100, If I select hair
&
Pools, I should get spa 99 & spa 100

So, I've gone the other route.but what I can't figure out is how to make

an
OR statement out of the array I get when I do Split.
(I've never done this before so I'm kindof confused with the syntax)

From what I can dig up information wise on this, I have to use a loop to
build an or statement that I can then pull into my query.

How do I do that??
Robyn


"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eC****************@TK2MSFTNGP11.phx.gbl...
> I suggest you take this one step at a time.
> Look at Split() to break it apart
> Look at a FOR loop to append the values.
> OR
> Just take the command delimited value and append it into the SQL

directly
> with a
> "select.....where.....IN (" & yourValues & ")......"
>
> --
> Curt Christianson
> Owner/Lead Developer, DF-Software
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "RH" <rh@bloofrog.net> wrote in message
> news:ut**************@TK2MSFTNGP09.phx.gbl...
> > <SELECT name="txtServices" size="3" multiple>
> > <OPTION value="Massage">Massage</OPTION>
> > <OPTION value="Facials">Facials</OPTION>
> > <OPTION value="Wet & Dry Body Treatments">Wet &amp; Dry

Body > > Treatments</OPTION>
> > <OPTION value="Medical Treatments">Medical

Treatments</OPTION>
> > <OPTION value="Nails, Pedicures, Manicures">Nails,

Pedicures,
> > Manicures</OPTION>
> > <OPTION value="Hair">Hair</OPTION>
> > <OPTION value="Pools">Pools</OPTION>
> > <OPTION value="Waxing">Waxing</OPTION>
> > <OPTION value="Make-up">Make-up</OPTION>
> > <OPTION value="Aromatherapy">Aromatherapy</OPTION>
> > <OPTION value="Specialties">Specialties</OPTION>
> > <OPTION value="Tinting">Tinting</OPTION>
> > <OPTION value="Fitness & Nutritional Counselling">Fitness
&amp;
> > Nutritional Counselling</OPTION>
> > </SELECT></TD>
> >
> > Since this is a muliple select box the values are passed to the search > > string comma delimited IE: facials, hair, pools etc
> >
> > Can anyone tell me how to parse this string and then build a select
> > statement whereby I can search for Facials OR Hair OR pools
> > I've been searching all over and can't find anything that does just
this.
> >
> > Thanks in advance
> >
> >
> >
>
>



Jul 19 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Pentti | last post by:
Can anyone help to understand why re-parsing occurs on a remote database (using database links), even though we are using a prepared statement on the local database: Scenario: ======== We...
13
by: temp | last post by:
Hi all, I know this is easy for you guys but I am not a VB developer. My boss just wanted me to generate a mapping of all the queries in our Access DB. So I managed to create some subroutines to...
18
by: Steve Litvack | last post by:
Hello, I have built an XMLDocument object instance and I get the following string when I examine the InnerXml property: <?xml version=\"1.0\"?><ROOT><UserData UserID=\"2282\"><Tag1...
3
by: Pir8 | last post by:
I have a complex xml file, which contains stories within a magazine. The structure of the xml file is as follows: <?xml version="1.0" encoding="ISO-8859-1" ?> <magazine> <story>...
9
by: Mark | last post by:
I've run a few simple tests looking at how query string encoding/decoding gets handled in asp.net, and it seems like the situation is even messier than it was in asp... Can't say I think much of the...
2
by: tshad | last post by:
Is there an easy way to parse a string that is set up like a query string? I have a string that I normally send in the query string to another page, but I would also like to take the same string...
1
by: johnpremi | last post by:
Hi there, I have to pass a query string parameter in my Web Config for loading a URL. We have two environments (production and devlopment) and MonitorURL needs to be changed when the deployment is...
29
by: zoltan | last post by:
Hi, The scenario is like this : struct ns_rr { const u_char* rdata; }; The rdata field contains some fields such as :
13
by: Chris Carlen | last post by:
Hi: Having completed enough serial driver code for a TMS320F2812 microcontroller to talk to a terminal, I am now trying different approaches to command interpretation. I have a very simple...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.