Post
by Yurii » Tue 23 Mar 2010 07:47
Oracle11g
Devart - dotConnect Version 5.35.79 (14-Jan-2010)
SQL code:
-- Create table
create table TESTEMPTYSTRNULL
(
STATUS CHAR(1) not null,
NAMESTATUS VARCHAR2(40) not null
)
-- Create/Recreate primary, unique and foreign key constraints
alter table TESTEMPTYSTRNULL
add constraint IDTEST primary key (STATUS)
;
Data:
insert into TESTEMPTYSTRNULL (STATUS, NAMESTATUS)
values (' ', 'Empty');
commit;
I think the problem in primary key.
If you need source code, please tell e-mail adress. I am simply created an ADO.NET Entity Data Model, Domain service, and loaded data from client.
Please, help me to solve this provlem.