Serious error in dcoracle ver 5.0.16.0

Discussion of open issues, suggestions and bugs regarding LinqConnect – Devart's LINQ to SQL compatible ORM
Post Reply
dqminh
Posts: 28
Joined: Wed 12 Nov 2008 01:31

Serious error in dcoracle ver 5.0.16.0

Post by dqminh » Tue 09 Dec 2008 03:46

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.

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Tue 09 Dec 2008 11:12

Thank you for the report. This problem will be fixed in the next build of dotConnect for Oracle.

dqminh
Posts: 28
Joined: Wed 12 Nov 2008 01:31

Post by dqminh » Tue 09 Dec 2008 12:49

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.

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Fri 12 Dec 2008 10:07

There was a known problem with Vista, we have fixed it. Look forward to the next build of dotConnect for Oracle.

Post Reply