Ask a Question related to Coldfusion Database Access, Design and Development.
-
Ramboni #1
Query of Query LIKE and Wild Card chars
I am tyring to use the 'LIKE' comparison within a Query of Query. The Query is
shown below.
<cfquery dbtype="query" name="GetFileList">
select * from ResFiles where name LIKE '#url.rid#_%'
</cfquery>
The Url.rid is always a positive integer.
I am trying to search within a directory for files whos name is of the forme
'123_AnyName.doc'. The problem is that both '_' and '%' are both valid
wild-card characters.
According to a CF MX Reference book we have, you can use forward-slash '/' as
an escape character. Therefore, I tried #url.rid#/_% to try to escape the '_'
character; and just to hench my bets I also tried #url.rid#\_%, but they do not
escape the '_' at all. In fact the RecordCount = 0 when I try this because, of
course, the query will be looking for e.g. '123\_AnyName.doc'.
How do I escape the flaming '_' in the query above.
Regards RS.
Ramboni Guest
-
Query of Queries on query New type query
In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could... -
CAML Query: Multiple Query Fields Issue
I need to Create a CAML Query Dynamically with VB to a Sharepoint WebService GetListItems Method. The User Could Select 1 to X Number of IDs... -
Using wild card in DateTime
Need help on defining a SQL query statement. I have a field in my table defined as "Date/Time". This is in Access. The data looks like this in... -
apt-get source: bash wild card
Hi, Unlike "apt-get install", I guess that "apt-get source" does not check if the source is already loaded. Therefore, I would like to add a... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
paross1 #2
Re: Query of Query LIKE and Wild Card chars
Hmmm, does using two _'s in a row escape the special meaning? I haven't tried it , but you might give it a shot.
Phil
paross1 Guest



Reply With Quote

