Ask a Question related to Coldfusion Component Development, Design and Development.
-
Bill Sahlas #1
Re: error invalid characters in my cfquery?
The list. What is that datatype your passing the list to? Is it an numeric
based or string? If it is a string (char, varchar, ntext, nvarchar, memo,
whatever) then those numbers cause an exception. You can use the ListQualify
method. It Inserts a string at the beginning and end of list elements. The
"string" in your case will be a single quote
<cfset qualifiedList1 = ListQualify(myList,"'",",","ALL")>
"pambg" <webforumsuser@macromedia.com> wrote in message
news:cuqgnb$6s8$1@forums.macromedia.com...> No, I wish it was but it's more to do with the variable I listed up the
> top and
> referencing it in the query. I works fine on my old server and older
> version
> of CF but for some reason it doesn't like the ## or just the reference in
> general. I'm totally LOST!
>
Bill Sahlas Guest
-
cfquery errors on Package or function LIST is in an invalid state
I am trying to understand an error I got from my cfquery I created a function using TOAD like: create or replace function list ( field1 number... -
Using Invalid Characters
I am using MS SQL for my ASP application and have several 'comments' fields. Obviously in these fields users are going to enter invalid characters... -
Matching invalid characters in a URL
I'm trying to throw out URLs with any invalid characters in them, like '@". According to http://www.ietf.org/rfc/rfc1738.txt : Thus, only... -
[PHP] Invalid Characters, XML...
Here's what I have been using. $trans= array("'" => "'", "'" => "'",">" => ">", "<" => "<", "&" => "&","-" => "-", "°" => "°", "±" => "±", "-"... -
Invalid Characters, XML...
Im using PHP to write to XML files, but I am having some problems. A lot of users are cutting and pasting content from text editors like word,...



Reply With Quote

