Page 1 of 1

Field Name Starts with Number ???

Posted: Mon Oct 29, 2007 1:02 am
by jayakumargr
Hi,

i have a table called Family which consist two columns(fields).

123 family_id
family_name

through dataset i pass the data to stireport for this table.while running the template it shows error like invalid token.

how to solve this error ?

Thanks in advance,
Jayakumar


Field Name Starts with Number ???

Posted: Mon Oct 29, 2007 10:14 am
by Guest
You can't use the name of data columns, which begins with digit. You must place before digit some letter.

Thank you.

Field Name Starts with Number ???

Posted: Mon Oct 29, 2007 1:00 pm
by Vital
Hello,

You can use NameInSource and Name properties of column. In NameInSource you need write:

123 family_id

In Name:

M_123_family_id

In Alias:

123 family_id

Report engine will be use NameInSource for access to database, Name for compiling and Alias for showing.

Thank you.