Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
748 views

array or list into Oracle using cfprocparam

I have a list of values I want to insert into a table via a stored procedure. I figured I would pass an array to oracle and loop through the array but I don't see how to pass an array into Oracle. ...
2
votes
2answers
156 views

Cache <cfstoredproc> results

Is there any way to cache the results of a <cfstoredproc> tag? The <cfquery> tag makes it easy with the cachedwithin attribute but there doesn't seem to be anything for ...
2
votes
2answers
497 views

Accessing RAISEERROR message from cfstoredproc

I have a SQL stored procedure which under some situations will return a result of -1 if it fails, but also returns a message via the RAISERROR command e.g.: BEGIN RAISERROR ('Error %i has ...
1
vote
2answers
165 views

What is a bound variable?

There is a cffunction (in a cfc document) which authenticates a user. It references a stored procedure and has a cfprocparam which is of type "out". On the Adobe CFML reference it says that means that ...
0
votes
1answer
46 views

Can I add a button to a CFGRID that lets a user export the grid to an XLSX file? How?

I'm a coldfusion developer working on a reporting application to display information from a CFSTOREDPROC process. I've been able to get the data from my query to display correctly in a CFGRID, and I'm ...
0
votes
2answers
851 views

no statement parsed and wrong number or types of arguments - cfstoredproc

I have an Oracle procedure - editBacklog which I'm calling from a CFM page via cfstoredproc. After several changes to the procedure I started getting ORA-06550: line 1, column 7: PLS-00306: wrong ...