Ask a Question related to Coldfusion Database Access, Design and Development.
-
jperkins99 #1
MySQL 5 + MX7 stored proc problem
I had the usual issues with driver incompatibility: "null null" error and then,
after installing connector/j 3.0.17 I got "Callable statments not supported".
I could not find the elusive 3.2 driver on the mysql site, so we installed the
5.0 driver (beta).
Now, I'm not getting any results returned from my stored proc. The error is:
-- Element RECORDCOUNT is undefined in QSIMPLEPROC
I also tried pulling the statuscode and got:
-- Element STATUSCODE is undefined in CFSTOREDPROC
The debugging looks correct. it appears that the stored proc is running
(liberties taken with formatting to make it readable):
simpleproc (Datasource=test, Time=0ms) in //_qry_financialAggregate.cfm @
10:36:38.038
parameters
----------------
type = OUT
CFSQLType = cf_sql_integer
value =
variable = oID = oID
dbVarName
resultsets
----------------
name = qSimpleproc
resultset = 1
But...nothing is returned. What gives?
jperkins99 Guest
-
cfc and stored proc
does anyone know if there is documentation anywhere that states that in ColdFusion MX 6.1 when you try to pass parameters to a stored procedure via... -
Stored Proc problem
Hi all, I have a stored proc which looks like this ---------------------------------------- create procedure PROC1 @param1,@param2,@param3,...... -
ASP vs Stored Proc vs UDF
Hi all, I have a field in Table A that must be updated whenever a record is added to Table B. Table A will always only contain one single record... -
Stored proc problem on 9.30.UC1
I have a problem with at stored proc "freezing" (actually just taking a long time to complete - going from less than a second to several minutes)... -
stored proc and tcp/ip
Hello, is it possible to communicate with another program using tcp/ip? I mean, i have another program where i know the port number and the... -
jperkins99 #2
Re: MySQL 5 + MX7 stored proc problem
Nevermind...the problem was that I needed to "SELECT" the variables at the end of the stored proc in order to return the values to coldfusion.
jperkins99 Guest



Reply With Quote

