Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[birt-report-designer-dev] Scripted data source

Hello,

I am trying to use a Scripted data source but I get some tricky
errors. I have downloaded a demo video on the birt site (in the
tutorial section) and I am trying to do the same things.

In my data set code editor, i have written the following instructions:
 - on the open property:
count = 0;
- on the fetch property:
if(count < 10){
	count++;
	return true;
}
return false;

Unfortunately I got an error when I try to preview my result on the DataSet

org.eclipse.birt.data.engine.core.DataException occurred
Error Code:DATA_EXCEPTION_SCRIPT_EVAL_ERROR
  Error Code:DATA_EXCEPTION_SCRIPT_EVAL_ERROR
  Error Message:Error evaluating script
(source:DataSet:Script_DataSet.fetch, line:2):  invalid return
(DataSet:Script_DataSet.fetch#2).
  invalid return (DataSet:Script_DataSet.fetch#2)

Maybe I am doing something wrong but i can figure out what. In fact, I
can not use any javascript function (like the importPackage one).
Thanks for your help.

note: I am using Rational Application Developer 6.0.0.1 and the report
designer 1.0-1 (downloaded today)
-- 
Olivier Jauze


Back to the top