Icon View Incident Report

Minor Minor
Reported By: Ole Willy Tuv
Reported On: 4/8/2007
For: Version 1.02 Build 1
# 2317 Calling Procedure with No Parameters Causing Compilation Error #700

There seems to be a parsing problem with calling a procedure having an empty parameter list. When I execute the following procedure definition, I'm getting the following error:

ElevateDB Error #700 An error was found in the statement at line 18 and column25 (Expected expression but instead found ))

Calling procedures having parameters works fine.

create procedure sp_clear_Sudoko_puzzle()
begin
 execute immediate
 '
   update SudokoGrid set
   column1 = null,
   column2 = null,
   column3 = null,
   column4 = null,
   column5 = null,
   column6 = null,
   column7 = null,
   column8 = null,
   column9 = null
 ';

 -- Update the Sudoko base table
 call sp_update_Sudoko();
end



Resolution Resolution
Fixed Problem on 4/9/2007 in version 1.03 build 1


Products Affected Products Affected
ElevateDB Additional Software and Utilities
ElevateDB VCL Client-Server
ElevateDB VCL Client-Server with Source
ElevateDB VCL Standard
ElevateDB VCL Standard with Source
ElevateDB VCL Trial

Image