One thing that I found when moving from 8i to 9i was that 9i was pickier than 8i when it came to discrepancies between Package Specification and Body. In as much as it was my fault they weren't the same, it was hard to blame Oracle.
I ran into this problem myself today. The only solution that I've found is the following:
<cfset x = ArrayNew(1)>
<cfset x[1] = "A">
<cfset x[3] = "C">
<cfset x[4] = "D">
<cfset pos = 2>
<cftry>
<cfset Element_Exists = "Yes">
<cfset Var_Value =...
In general, I use a variable to hold the list of field names to be returned in the select statement. The list is comma delimited. I'd then loop through the list to display the heading. ListLen tells you how many columns. You can also set up a corresponding list of column labels. There used to be...
Data is transfered in the following basic ways:
Through URL via a hyperlink. The Cold Fusion URLEncodedFormat function can be used to take care of special characters, etc. Clients see
Through FORM variables, method="post" action="cfpage" Note that you will need to use a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.