GeekArticles
FAQ
Oracle FAQHow to run functions wich execute DML commands ?
Author: asktom.oracle.com |
Published: 21st May 2008 |
Visited: 104 times |
Add CommentFiled in: Oracle FAQI am using LUA to write an application that should run some Oracle functions that need parameters, and also execute inserts or update DML commands. Is there any way of running these functions without using a select (function) command ?
I was thinkin...
Read Article Sponsored Links
Related Articles
• error in code of the functions SQLCallBack25 QC#: 58675 Version: 10.0 Status: New defect, requires tester review Description: SqlExpr.pas:
function SQLCallBack25(CallType: TRACECat; CBInfo25: Pointer): CBRType; stdcall;
var
CBInfo30 : SQLTraceDesc30;
begin
Result := cbrUSEDEF;
if CBInfo25 <& ...
• Using functions in queries HI,
I am trying to wite a compound sql query which tries to compare data between 2 tables. Firstly, I need to roll up data in table1, to do this I use:
<code>
select SUM(t1.a * t2.b) DOLLARS,
SUM(t1.c) CALLS, SUM(t1.a) MINS, t1.produ ...