Page 1 of 1

Serious error in dcoracle ver 5.0.16.0

Posted: Tue 09 Dec 2008 03:46
by dqminh
Hi,

After install version 5.0.16.0, I found the serious error ORA-01036: illegal variable name/number when paging query result.

1. Create any table.
2. Generate code C#.
3. Test:

Work:

Code: Select all

DataContext db = new DataContext();
var x = db.Articles.Take(10).AsEnumerable();
Work:

Code: Select all

DataContext db = new DataContext();
var x = db.Articles.Skip(5).AsEnumerable();
Not work: error: ORA-01036: illegal variable name/number

Code: Select all

DataContext db = new DataContext();
var x = db.Articles.Skip(5).Take(10).AsEnumerable();
Please test it.

Thanks.

Posted: Tue 09 Dec 2008 11:12
by AndreyR
Thank you for the report. This problem will be fixed in the next build of dotConnect for Oracle.

Posted: Tue 09 Dec 2008 12:49
by dqminh
Another question, I have two computer, one is running Windows XP, one is running Windows Vista. After uninstall version 5.0.12 and install version 5.0.16, the Windows XP computer running well, but Windows Vista is not. Error message: invalid license (code 7). This error occur when I run my project (occur when perform data task), and even open Entity Developer (error occur when connect to Oracle).

The component I install is trial.

Posted: Fri 12 Dec 2008 10:07
by AndreyR
There was a known problem with Vista, we have fixed it. Look forward to the next build of dotConnect for Oracle.