Ask a Question related to Coldfusion Database Access, Design and Development.
-
mike #1
Output from Cfquery
I have some pl/sql I want to run in my cfquery.
I'd like to get the output from the cfquery
The cfquery is calling a function.
<cfquery name="MyQuery" ......>
declare
myupdates integer;
myinserts integer;
begin
if update_mytbl('#var1#') = 0 then
if insert_mytbl('#var1#') = 1 then
myinserts := myinserts + 1;
end if;
else
myupdates := myupdates + 1;
end if;
dbms_output.put_line(myupdates);
dbms_output.put_line(myinserts);
end;
</cfquery>
<cfdump var="MyQuery"> produces an error
Mike
mike Guest
-
Output from different datasource in cfquery statement
i've make 2 cfquery statements. one refers to datasource DatStudent and another one refers to datasource DatModul. in coldfusion admin, DatStudent... -
cfquery output duplicatig a cfset variable
I am experiencing a weird duplication of a cfset variable that I am trying to use in a form as a hidden input element. I am dynamically building a... -
output of a <cfquery>
I have a pretty straightforward query - please see code attached. The parameters passed to query are -... -
Carriage returns/output not displayed in output.asp
PLEASE DON'T MULTIPOST. PLEASE DON'T POST ATTACHMENTS. PLEASE DON'T DOUBLE-POST. Ray at work -
#25152 [Opn->Bgs]: output buffering functions don't catch "virtual" output
ID: 25152 Updated by: iliaa@php.net Reported By: msarsale at buenosaires dot gov dot ar -Status: Open +Status:...



Reply With Quote

