Search found 4 matches

by huntchen
Fri 04 Jun 2010 06:40
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18471

the code should be set as..

Devart.Data.Oracle.Entity.OracleEntityProviderServices.StringCastFormat = "TO_NCHAR({0})";
by huntchen
Wed 02 Jun 2010 11:12
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18471

thanks...I got it..I will try it... :D
by huntchen
Fri 30 Apr 2010 16:29
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18471

Thanks a lot... :D
by huntchen
Thu 29 Apr 2010 16:30
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18471

Dear Andrey:
I have the same problem about multiple include.
After i set"Devart.Data.Oracle.Entity.OracleEntityProviderServices.TypedNulls = true;"
I got error "ORA-12704: character set mismatch",
I also read the post (http://www.devart.com/forums/viewtopic.php?t=15451),and found the problem is "TO_CHAR(NULL) AS C5",correct is (for example) "TO_NCHAR(NULL) AS C5"

My question is,have any setting can change query string let TO_CHAR(Null) --> TO_Nchar(Null)

My dotConnect for Oracle Version is 5.60.120.0,and I think because I have NVarchar2 data type...