I have installed CF 8 Standard Edition and Oracle 11g.
I used an Oracle ODBC dsn to connect to the database.
But I get this error when I try to execute an Oracle stored proc.:

[HY000] [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due 
to internal error in remote procedure call, connection closed. 
 
Example:
 
<cftry>
<!-- this is executed without problems -->
<cfquery name="set_role" datasource="#Session.AppDSN#">
 SET ROLE role_web IDENTIFIED BY xxx;
</cfquery>
 
<!-- this one fails -->
<cfstoredproc procedure="safcown.SAFC.sel_parametro" 
datasource="#Session.AppDSN#">
   <cfprocresult name="qry_param">
</cfstoredproc>
 <cfcatch type="database">
  <cfoutput>#cfcatch.detail#</cfoutput>
  <cfabort>
 </cfcatch>
</cftry>


This sp is very simple: select * from table.

I would be grateful if you could help me.

Thanks in advance.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-server/message.cfm/messageid:6864
Subscription: http://www.houseoffusion.com/groups/cf-server/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.10

Reply via email to