Hi guys, In coldfusion, how can I send an anonymous block to oracle and get some response from oracle? I tried cfquery, but it doesn't work. Great thanks.
@Antony, I know i can write anonymous block in cfquery. Such as:
<cfquery name="queryName" datasource="oracle11ghr" result="queryName_meta">
BEGIN
INSERT INTO npr_t_reservation(reservation_id) VALUES(33);
INSERT INTO npr_t_reservation(reservation_id) VALUES(34);
UPDATE npr_t_reservation set reservation_id=35 WHERE reservation_id=34;
COMMIT;
END;
</cfquery>
In fact what i did not know is how can i get some return value from sending anonymous block to oracle.
@Antony, Hi Antony, the upper code is just a demonstration. In fact what I want to get from anomynous is of simple datatype, not collections or object type instance. Such as VARCHAR2, NUMBER etc.
@APC, I don't use some kind of stored program because I'm not allowed to save it into the database. So why I want to use an anonymous block to do the database work? Because I need to do a lot of database related work. If I do these work in coldfusion it will be complicated and trivial.